HDOJ 2101 A + B Problem Too

// HDOJ 2101 A + B Problem Too 
// @author:    bos
// @date:    2012.2.14 
#include <stdio.h> 
int main() 
{ 
    int a, b; 
    while(scanf("%d%d", &a, &b)!= EOF) 
    { 
        if((a+ b)% 86== 0) printf("yes\n"); 
        else printf("no\n"); 
    } 
    return 0; 
}
posted @ 2012-02-14 16:04  ibos  阅读(161)  评论(0编辑  收藏  举报