Submission #6
Details and source code
| ID | Time | User | Problem | Lang | Verdict |
|---|---|---|---|---|---|
| 6 | Mar 22, 2025, 04:30 AM | Godzilla_G2343 | A*B | cpp | WA 2 |
Source Code
cpp#include <bits/stdc++.h>
using namespace std;
int main(){
long long a, b;
cin >> a >> b;
cout << a * b;
}