Q

codeup 1062

codeup 1062번 문제

codeup 1062번 문제


C code

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

int main(void)
{
int a,b;

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

printf("%d\n", a ^ b);

return 0;
}