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