8 lines
85 B
C
8 lines
85 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int x, y;
|
|
scanf("%x %x", &x, &y);
|
|
|
|
return x^y;
|
|
}
|