Submission #69

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
69Jan 29, 2026, 11:01 AMadminA*BcppCE

Source Code

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