Archived
1
0
Fork 0
This repository has been archived on 2022-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
mipt_clang/data/bit_0.c

9 lines
85 B
C
Raw Normal View History

2022-02-21 15:42:38 +03:00
#include <stdio.h>
int main() {
int x, y;
scanf("%x %x", &x, &y);
return x^y;
}