import java.util.Scanner; public class Restrictions { public static void main(String args[]) { Scanner scan = new Scanner(System.in); // 100円の枚数 int n = scan.nextInt(); // 10円の枚数 int m = scan.nextInt(); // 判定条件(本来は前提条件(M=10×N)があるため問答無用でYes) // 今回の条件では100円の枚数は最大で1枚差であることを利用する if((n % 2) == 1) { if(m < 10) { System.out.println("No"); } m -= 10; if(m % 2 == 0) { System.out.println("Yes"); }else { System.out.println("No"); } } System.out.println("Yes"); return; } }