ログイン
新規登録
AtsuoCoder Petrozavodsk Contest 001
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 18c04d9f-6728-4a1a-adf9-f82e70d1ef45
コード
#include <bits/stdc++.h> using namespace std; int main() { int N M; cin >> N >> M; cout << N*M << endl; }
結果
問題
点数
言語
結果
実行時間
メモリ
A - Sushi2
0
C++
WJ
0 ms
0 KiB
コンパイルエラー
Main.cpp: In function 'int main()': Main.cpp:5:11: error: expected initializer before 'M' 5 | int N M; | ^ Main.cpp:6:12: error: 'N' was not declared in this scope 6 | cin >> N >> M; | ^ Main.cpp:6:17: error: 'M' was not declared in this scope 6 | cin >> N >> M; | ^