Submission #80

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
80Feb 03, 2026, 09:48 AMadminA*BcppCE

Source Code

cpp
#include <bits/stdc++.h>
using namespace std;

int main() {
    __int_128 a, b;
    cin >> a >> b;
    cout << a * b;
    return 0;
}