(HDU)1091 --A+B for Input-Output Practice (III)(输入输出练习(III))

#include <stdio.h>

int main()
{
    int a,b;
    while(~scanf("%d %d",&a,&b))
    {
        if(a==0 && b==0) continue;
        else printf("%d
",a+b);
    }

    return 0;
}
原文地址:https://www.cnblogs.com/ACDoge/p/6130419.html