173752025-07-15 10:32:00algoproCsokiosztáscpp17Compilation 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";
	}
}
Compilation error
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 |         }
      |         ~