Advertisement
Md_Touhid

URI - Problem 1004 - Simple Product

Apr 11th, 2020
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int A, B;
  8.     cin >> A;
  9.     cin >> B;
  10.  
  11.     int PROD = A*B;
  12.  
  13.     cout << "PROD = " << PROD << endl;
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement