rustic-sysy/sysy_sets/43_logi_assign.sy

16 lines
125 B
Plaintext
Raw Normal View History

2024-08-27 18:13:31 +08:00
int a;
int b;
int main()
{
a=getint();
b=getint();
int c;
if (a==b&&a!=3) {
c = 1;
}
else {
c = 0;
}
return c;
}