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

13 lines
112 B
Plaintext

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