N = int(input()) M = int(input()) if M % 2: print('No') else: x = (N * 10 + M) // 2 if x // 10 >= N: print('Yes') else: if x % 10 >= M: print('No') else: print('Yes')