Details and source code
#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; }