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