fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, product;
  6.  
  7. cout << "Enter first number: ";
  8. cin >> a;
  9.  
  10. cout << "Enter second number: ";
  11. cin >> b;
  12.  
  13. product = a * b;
  14.  
  15. cout << "Multiplication of two numbers = " << product;
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5292KB
stdin
43
5
stdout
Enter first number: Enter second number: Multiplication of two numbers = 215