Q

codeup 1056

codeup 1056번 문제

codeup 1056번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int main(void)
{
int a,b,c;

scanf("%d %d",&a, &b);

printf("%d", (a&&!b) || (!a&&b));

return 0;
}