let N = Int(readLine()!) let M = Int(readLine()!) var ans = "Yes" if N! % 2 != 0{ ans = "No" if M! % 2 == 0 && M! >= 10{ ans = "Yes" } } print(ans)