[恢]hdu 2101

2011-12-15 02:06:24

地址:http://acm.hdu.edu.cn/showproblem.php?pid=2101

题意:两数和是否是86的倍数。

代码:

# include <stdio.h>


int main ()
{
int a, b ;
while (~scanf ("%d%d", &a, &b))
puts (((a+b)%86) ? "no" : "yes") ;
return 0 ;
}



posted @ 2012-01-06 14:58  Seraph2012  阅读(120)  评论(0编辑  收藏  举报