| 17405 | 2025-07-15 10:57:22 | algopro | Csokiosztás | cpp17 | Compilation error |
// UUID: 60ea07f4-36bb-4166-b54c-4900deaaaa9a
#include <bits/stdc++.h>
using namespace std;
int main() {
int N, R, C;
cin >> N >> R >> C;
if (((R*C)%N)=0) {
cout << "IGEN";
} else {
cout << "NEM";
}
}
open /var/local/lib/isolate/406/box/a.out: no such file or directory
main.cpp: In function 'int main()':
main.cpp:8:19: error: lvalue required as left operand of assignment
8 | if (((R*C)%N)=0) {
| ~~~~~~^~~