Problem6791--位操作 —— 按位异或

6791: 位操作 —— 按位异或

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

给两个整数 $x,y$,求 $x \oplus y$ 的结果。
x^y 相同为 $0$,不同为 $1$
3 ^ 4
3(0000 0011)
4(0000 0100)
-------------
7(0000 0111)

Input

一行包括两个整数 $x,y\ (−10^9≤x,y≤10^9)$。

Output

一行一个整数,表示答案。

Sample 1 Input

20 20

Sample 1 Output

0

Sample 2 Input

20 -20

Sample 2 Output

-8

Sample 3 Input

3 5

Sample 3 Output

6

Source/Category