题目:​​http://acm.hdu.edu.cn/showproblem.php?pid=2101​

做难题太打击人了,想做做水题,结果让人纪念啊!!!!!!!!

#include <stdio.h>
int main()
{
int a,b;
while(scanf("%d%d",&a,&b)!=EOF)
printf("%s\n",(a+b)�==0?"yes":"no"); //yes和no的大小写,检查了几遍,没有看出来 // 一直以为是被的地方错, 让我提交了三次,忍
return 0;
}