#include <stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF) { if((a+b)%86==0) puts("yes"); else puts("no"); } return 0; }