Problem6788--位运算 —— setBit

6788: 位运算 —— setBit

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

Description

将某个整数 $n$ 的指定第 $m$ 位设置为 $1$。

Input

一行包括两个整数 $n\ (-10^9 \leq n \leq 10^9),\ m\ (0 \leq m \leq 63)$。

Output

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

Sample 1 Input

3 5

Sample 1 Output

35

Sample 2 Input

2 0

Sample 2 Output

3

Source/Category