3 lines
54 B
Python
3 lines
54 B
Python
N, K = map(int, input().split())
|
|
print(K//(2**(N-1)))
|
N, K = map(int, input().split())
|
|
print(K//(2**(N-1)))
|