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

#include <stdio.h>

int main()
{
    int a,b,c;
    while(~scanf("%d %d",&a,&b))
    {
        c = a + b;
        printf("%d
",c);
    }
    return 0;
}
原文地址:https://www.cnblogs.com/ACDoge/p/6130410.html