Submission #5

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
5Mar 22, 2025, 04:29 AMGodzilla_G2343A*BcppWA 2

Source Code

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