fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a,b;
  6. cin >> a >> b;
  7. int x = a * b;
  8. cout << x;
  9.  
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 5316KB
stdin
1 2
stdout
2