Advertisement
arfin97

break kore na ken?

Jul 3rd, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define debug(x) cout << #x << " = " << (x) << endl;
  4. #define LL long long
  5. int main(){
  6.     unsigned LL int x;
  7.     unsigned LL int m;
  8.     while(scanf("%d %d", &x, &m)){
  9.         if(x == 0 && m == 0) break;
  10.         unsigned LL int n = x * m;
  11.         printf("%d\n", n);
  12.     }
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement