fork download
  1. #include <iostream>
  2. using namespace std;
  3. #define ll long long
  4. int main() {
  5. ll x, y; cin >> x >> y;
  6. cout << x*y;
  7. return 0;
  8. }
Success #stdin #stdout 0.01s 5304KB
stdin
4 5
stdout
20