[ZJa002]簡易加法

題目:
http://zerojudge.tw/ShowProblem?problemid=a002
=================================================
#include<cstdio>
int main()
{
int a,b;
while(scanf("%d%d",&a,&b)!=EOF)
printf("%d\n",a+b);
return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯