Advertisement
Guest User

1.4

a guest
Feb 6th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     cout << "Enter two numbers:" << endl;
  8.     int v1 = 0, v2 = 0;
  9.     cin >> v1 >> v2;
  10.     cout << "The product of " << v1 << " and " << v2 << " is " << v1 * v2 << endl;
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement