fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a , b;
  8. int product;
  9.  
  10. cin >> a >> b;
  11. product = a * b;
  12. cout << product;
  13.  
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0.01s 5332KB
stdin
Standard input is empty
stdout
787195424