16 lines
125 B
Plaintext
Executable File
16 lines
125 B
Plaintext
Executable File
int a;
|
|
int b;
|
|
int main()
|
|
{
|
|
a=getint();
|
|
b=getint();
|
|
int c;
|
|
if (a==b&&a!=3) {
|
|
c = 1;
|
|
}
|
|
else {
|
|
c = 0;
|
|
}
|
|
return c;
|
|
}
|