ログイン
新規登録
AtsuoCoder Petrozavodsk Contest 001
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 54a9fc27-5d14-473d-b925-fd43a150812a
コード
#include<bits/stdc++.h> using namespace std; int main(void){ int a,b; cin >> a>>b; if(a>b){ cout<<"Atsuo Corporation"<<endl } else{ cout<<"Atsuo Corp."<<endl; } }
結果
問題
点数
言語
結果
実行時間
メモリ
C - Eleven
0
C++
WJ
0 ms
0 KiB
コンパイルエラー
Main.cpp: In function 'int main()': Main.cpp:7:40: error: expected ';' before '}' token 7 | cout<<"Atsuo Corporation"<<endl | ^ | ; 8 | } | ~