Problem6790--位操作 —— 按位或

6790: 位操作 —— 按位或

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

Description

给两个整数 $x,y$,求 $x|y$ 的结果。
x | y:同为 $0$ 时,结果为 $0$
3 | 4
3(0000 0011)
4(0000 0100)
-------------
7(0000 0111)

Input

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

Output

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

Sample 1 Input

3 5

Sample 1 Output

7

Sample 2 Input

4 1

Sample 2 Output

5

Sample 3 Input

5 1

Sample 3 Output

5

100 -100

-4

Source/Category