import java.util.Scanner; public class Main { static int X, Y; static int dx[] = { -2, -2, -1, -1, 1, 1, 2, 2 }; static int dy[] = { -1, 1, -2, 2, -2, 2, -1, 1 }; public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { X = scan.nextInt(); Y = scan.nextInt(); if(solve()) { System.out.println("YES"); } else { System.out.println("NO"); } } } static boolean solve() { int x = 0, y = 0; if(x == X && y == Y) return true; for(int i=0; i