Submission

Status:

PP--------

Subtask/Task Score:

20/100

Score: 20

User: cheetah

Problemset: I.Quick Math

Language: cpp

Time: 0.005 second

Submitted On: 2026-07-23 20:39:47

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

int main () {
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int a, b;
    cin >> a >> b;
    cout << a * b;

    return 0;
}