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