1095 A+B for Input-Output Practice (VII)

一直presentation不对 ,看了别人的解释,还是不知道为什么最后还要

http://acm.hdu.edu.cn/showproblem.php?pid=1095

#include<stdio.h>
int main()
{
    int a,b;
    while(scanf("%d %d",&a,&b)!=EOF)
    {
        printf("%d
",a+b);
        printf("
");
    }
    return 0;
}   
原文地址:https://www.cnblogs.com/CheeseIce/p/10716180.html