Submission #35

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
35Mar 29, 2025, 11:34 AMMuaath_5A*BcppAC

Source Code

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

#define dd __int128
static inline dd read()
{
    dd x = 0;char ch = getchar();
    while (ch < '0' || ch>'9') ch = getchar();
    while (ch >= '0' && ch <= '9') x = (x << 3) + (x << 1) + (ch ^ 48), ch = getchar();
    return x;
}

static inline void print(const dd &x) {
    if (x > 9)print(x / 10);
    putchar('0' + x % 10);
}

int main()
{
 	dd a=read(), b=read();
    print(a*b);
}