From dd684349c67c988ef19707cb65e637b6906fac75 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Fri, 8 Jul 2022 19:54:42 +0200 Subject: Solved some new problems --- codechef/countingWords/main.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 codechef/countingWords/main.cpp (limited to 'codechef/countingWords/main.cpp') 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 + +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; + } +} -- cgit v1.2.3