173772025-07-15 10:32:19algoproCsokiosztáscpp17Forditási hiba
// 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";
	}
}
Forditási hiba
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 |         }
      |         ~