http://acm.hdu.edu.cn/showproblem.php?pid=2101
快吃饭了,做点超级简单的
1 #include <stdio.h>
2 int main()
3 {
4 int a,b;
5 while(scanf("%d%d",&a,&b)!=EOF){
6 if((a+b)%86==0) printf("yes\n");
7 else printf("no\n");
8 }
9 return 0;
10 }
http://acm.hdu.edu.cn/showproblem.php?pid=2101
快吃饭了,做点超级简单的
1 #include <stdio.h>
2 int main()
3 {
4 int a,b;
5 while(scanf("%d%d",&a,&b)!=EOF){
6 if((a+b)%86==0) printf("yes\n");
7 else printf("no\n");
8 }
9 return 0;
10 }