| 17377 | 2025-07-15 10:32:19 | algopro | Csokiosztás | cpp17 | Compilation error |
// UUID: 5aad1173-fb4b-403b-aa35-8d8139756ea6
#include <bits/stdc++.h>
using namespace std;
int main() {
int N,R,C;
cin>>N;
cin>>R;
cin>>C;
if (R*C>=N) {
cout<<"IGEN"
}
else{
cout<<"NEM";
}
}
open /var/local/lib/isolate/413/box/a.out: no such file or directory
main.cpp: In function 'int main()':
main.cpp:11:29: error: expected ';' before '}' token
11 | cout<<"IGEN"
| ^
| ;
12 | }
| ~