aboutsummaryrefslogtreecommitdiff
path: root/codechef/hardCash
diff options
context:
space:
mode:
Diffstat (limited to 'codechef/hardCash')
-rw-r--r--codechef/hardCash/hardCash.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/codechef/hardCash/hardCash.cpp b/codechef/hardCash/hardCash.cpp
new file mode 100644
index 0000000..5f6862e
--- /dev/null
+++ b/codechef/hardCash/hardCash.cpp
@@ -0,0 +1,14 @@
+#include<bits/stdc++.h>
+
+using namespace std;
+
+int main () {
+ ios_base::sync_with_stdio(false);
+ cin.tie(NULL);
+ int tt;
+ cin >> tt;
+ while(tt--){
+
+
+ }
+}