hdu 2101

#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;
}

posted @ 2014-12-17 11:33  __夜风  阅读(79)  评论(0编辑  收藏  举报