CompilerSysY/testcases/functional_test/15_equal.sy
2023-05-08 21:15:52 +08:00

13 lines
111 B
Plaintext

int a;
int b;
int main(){
a = getint();
b = getint();
if ( a == b ){
return 1;
}
else{
return 0;
}
}