Advertisement
Hamoudi30

Untitled

May 14th, 2022
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int N = 1e6+7;
  4. int vis[N];
  5. int main() {
  6. ios_base::sync_with_stdio(false);
  7. cin.tie(nullptr);
  8. cout.tie(nullptr);
  9. // freopen("/home/hamoudi/Coding/run.in", "r", stdin);
  10. int tt = 1;
  11. // cin >> tt;
  12. while (tt--) {
  13. int n, m;
  14. cin >> n >> m;
  15. cout << n * m << endl;
  16. }
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement