A36 - Travel
提出
code: python
n, k = map(int, input().split())
if k < (n-1)*2:
print("No")
exit()
if k % 2 == 0:
print("Yes")
else:
print("No")