aboutsummaryrefslogtreecommitdiff
path: root/codechef/BiryaniClasses/main.cpp
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2022-06-29 15:57:29 +0200
committeromagdy7 <omar.professional8777@gmail.com>2022-06-29 15:57:29 +0200
commit1b8f7c9d4eb8b767d32dbbbfd96662b73c037627 (patch)
tree7f984139dcca441d7ab582e0c67daa125e400a14 /codechef/BiryaniClasses/main.cpp
parent7860cb994fbf6af63865eb6dc9045bbc8abd61a4 (diff)
downloadcompetitive-programming-1b8f7c9d4eb8b767d32dbbbfd96662b73c037627.tar.xz
competitive-programming-1b8f7c9d4eb8b767d32dbbbfd96662b73c037627.zip
Solved some problem from codechef and codeforces
Diffstat (limited to 'codechef/BiryaniClasses/main.cpp')
-rw-r--r--codechef/BiryaniClasses/main.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/codechef/BiryaniClasses/main.cpp b/codechef/BiryaniClasses/main.cpp
new file mode 100644
index 0000000..ce518eb
--- /dev/null
+++ b/codechef/BiryaniClasses/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 x, y;
+ cin >> x >> y;
+ cout << x * y << endl;
+ }
+}