Advertisement
rengetsu

Timus_1264

Jul 19th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. //Timus 1264
  2. #include <iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n, m;
  7.     cin >> n >> m;
  8.     cout << n*(m+1);
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement