A+B Problem (0)

来源:互联网 发布:数据一致性数据治理 编辑:程序博客网 时间:2024/05/17 22:59
#include<stdio.h>
int main()
{int a,b;
while(scanf("%d %d",&a,&b),a!=0||b!=0)
printf("%d",a+b);
return 0;
}