Problem6789--位运算 —— 按位与操作

6789: 位运算 —— 按位与操作

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

Description

给两个整数 $x,y$,求 $x \& y$ 的结果。
x & y:同为 $1$ 时,结果为 $1$
例如
3 & 4
3(0000 0011)
4(0000 0100)
-------------
0(0000 0000)

Input

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

Output

一行一个整数,表示结果。

Sample 1 Input

3 5

Sample 1 Output

1

Sample 2 Input

100 100

Sample 2 Output

100

Sample 3 Input

10 -10

Sample 3 Output

2

3 4

0

Source/Category