Submission #67

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
67Jan 29, 2026, 11:00 AMadminA*BcppWA 2

Source Code

cpp
#include <iostream>
using namespace std;
int main() {
  int x, y;
  cin >> x >> y;
  cout << x * y;
  return 0;
}