sysy-data/functional/sy/43_logi_assign.sy

16 lines
125 B
Plaintext
Raw Normal View History

2024-01-09 19:48:14 +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;
}