import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {

    //取りうる座標を全て定数化しておく
    private static final int dest[][] = new int[][]{{-6, -3},
    {-6, -1},
    {-6, 1},
    {-6, 3},
    {-5, -4},
    {-5, -2},
    {-5, 0},
    {-5, 2},
    {-5, 4},
    {-4, -5},
    {-4, -3},
    {-4, -2},
    {-4, -1},
    {-4, 0},
    {-4, 1},
    {-4, 2},
    {-4, 3},
    {-4, 5},
    {-3, -6},
    {-3, -4},
    {-3, -3},
    {-3, -2},
    {-3, -1},
    {-3, 0},
    {-3, 1},
    {-3, 2},
    {-3, 3},
    {-3, 4},
    {-3, 6},
    {-2, -5},
    {-2, -4},
    {-2, -3},
    {-2, -1},
    {-2, 0},
    {-2, 1},
    {-2, 3},
    {-2, 4},
    {-2, 5},
    {-1, -6},
    {-1, -4},
    {-1, -3},
    {-1, -2},
    {-1, -1},
    {-1, 0},
    {-1, 1},
    {-1, 2},
    {-1, 3},
    {-1, 4},
    {-1, 6},
    {0, -5},
    {0, -4},
    {0, -3},
    {0, -2},
    {0, -1},
    {0, 0},
    {0, 1},
    {0, 2},
    {0, 3},
    {0, 4},
    {0, 5},
    {1, -6},
    {1, -4},
    {1, -3},
    {1, -2},
    {1, -1},
    {1, 0},
    {1, 1},
    {1, 2},
    {1, 3},
    {1, 4},
    {1, 6},
    {2, -5},
    {2, -4},
    {2, -3},
    {2, -1},
    {2, 0},
    {2, 1},
    {2, 3},
    {2, 4},
    {2, 5},
    {3, -6},
    {3, -4},
    {3, -3},
    {3, -2},
    {3, -1},
    {3, -1},
    {3, 0},
    {3, 1},
    {3, 2},
    {3, 3},
    {3, 4},
    {3, 6},
    {4, -5},
    {4, -3},
    {4, -2},
    {4, -1},
    {4, 0},
    {4, 1},
    {4, 2},
    {4, 3},
    {4, 5},
    {5, -4},
    {5, -2},
    {5, 0},
    {5, 2},
    {5, 4},
    {6, -3},
    {6, -1},
    {6, 1},
    {6, 3}};

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        String str;

        while (!"".equals(str = br.readLine())) {

            if (str == null) {
                break;
            }

            String strs[] = str.split(" ");

            int place[] = new int[]{Integer.parseInt(strs[0]), Integer.parseInt(strs[1])};

            for (int i = 0; i < dest.length; i++) {
                if (dest[i][0] == place[0] && dest[i][1] == place[1]) {
                    System.out.println("YES");
                    return;
                }
            }

            System.out.println("NO");

        }
    }
}