| 17375 | 2025-07-15 10:32:00 | algopro | Csokiosztás | cpp17 | Compilation error |
// UUID: 7c961df8-852a-4904-bf12-c3eedcfcbb70
#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/443/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 | }
| ~