/*
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
*/
// 0 0:0 // 0 1:1 // 1 0:1 // 1 1:1
/*
#include<stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d",a||b);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int a,b;
scanf("%d",&a);
printf("%d",!a);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d",a||b);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d",(a!b)||(a&&!b));
return 0;
}
*/
/* |
A B | AND(&&) | OR(||) | NOT!(A) | NOT!(B) | NOT AND(!(A&&B)) | NOT OR(!(A||B)) | (A&&!B)
0 0 | 0 | 0 | 1 | 1 | 1 | 1 | ?
0 1 | 0 | 1 | 1 | 0 | 1 | 0 | ?
1 0 | 0 | 1 | 0 | 1 | 1 | 0 | ?
1 1 | 1 | 1 | 0 | 0 | 0 | 0 | ?
*/