Archived
1
0
Fork 0
This commit is contained in:
nihonium 2022-02-21 15:42:38 +03:00
parent 963dbd04e0
commit 00b2bb30c2

9
data/bit_0.c Normal file
View file

@ -0,0 +1,9 @@
#include <stdio.h>
int main() {
int x, y;
scanf("%x %x", &x, &y);
//printf("%x\n", x^y);
return x^y;
}