ZOJ Problem Set - 1001 A + B Problem

  ZOJ ACM题集,编译环境VC6.0

#include <stdio.h>

int main()
{
    int a,b;
    while(scanf("%d%d",&a,&b)!=EOF)
    {
        printf("%d\n",a+b);
    }

    return 0;
}

 

posted @ 2013-09-04 10:53  xlturing  阅读(238)  评论(0编辑  收藏  举报