Submission #6

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
6Mar 22, 2025, 04:30 AMGodzilla_G2343A*BcppWA 2

Source Code

cpp
#include <bits/stdc++.h>
using namespace std;
int main(){
    long long a, b;
    cin >> a >> b;
    cout << a * b;
}