Submission #63

Details and source code

Back to submissions
IDTimeUserProblemLangVerdict
63Jan 29, 2026, 09:17 AMadminA*BcppWA 2

Source Code

cpp
#include <iostream>
using namespace std;
int main() {
    long long a, b;
    cin >> a >> b;
    cout << a * b;
    return 0;
}