http://acm.hdu.edu.cn/showproblem.php?pid=2101
/*
2011-9-21
author:BearFly1990
*/
package acm.hdu.tests;
import java.io.BufferedInputStream;
import java.util.Scanner;
public class HDU_2101 {
public static void main(String[] args) {
Scanner in = new Scanner(new BufferedInputStream(System.in));
while(in.hasNext()){
int a = in.nextInt();
int b = in.nextInt();
if((a + b) % 86 == 0)System.out.println("yes");
else{
System.out.println("no");
}
}
}
}