173602025-07-15 10:20:21algoproCsokiosztás 2cpp17Forditási hiba
// UUID: a22b10f0-61a7-4114-bfa2-1de6354a2d73
#include <bits/stdc++.h>
using namespace std;

int main() {
	int m;
    int n;
    int k;
    cin>>m>>n>>k;
    if((k%(m+n))==0){
        cout<< "IGEN"
    }
    else{
        cout<< "NEM"
    }
}
Forditási hiba
open /var/local/lib/isolate/431/box/a.out: no such file or directory
main.cpp: In function 'int main()':
main.cpp:11:22: error: expected ';' before '}' token
   11 |         cout<< "IGEN"
      |                      ^
      |                      ;
   12 |     }
      |     ~                 
main.cpp:14:21: error: expected ';' before '}' token
   14 |         cout<< "NEM"
      |                     ^
      |                     ;
   15 |     }
      |     ~