ログイン
新規登録
AtsuoCoder Petrozavodsk Contest 001
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 b4e1074d-54b3-4a2e-867d-0632514b9d81
コード
#include <bits/stdc++.h> using namespace std; int main() { int n; int m; cin >> n >> m; n = 1< n <100 m = 1< m <100 cout << n*m <<endl; }
結果
問題
点数
言語
結果
実行時間
メモリ
A - Sushi2
0
C++
WJ
0 ms
0 KiB
コンパイルエラー
Main.cpp: In function 'int main()': Main.cpp:8:18: error: expected ';' before 'm' 8 | n = 1< n <100 | ^ | ; 9 | m = 1< m <100 | ~