Submission #85

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
85Feb 03, 2026, 09:51 AMadminA*BcppCE

Source Code

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

int main() {
    long long _a,_b;
    __int128 a, b;
    cin >> _a >> _b;
  a = _a, b = _b;
    auto c = a * b;
    cout << to_string(c);
    return 0;
}