通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
100 50 10
47977.93
#include<stdio.h>
int main()
{
int a,b;
while(~scanf("%d%d", &a, &b))printf("%d\n",a+b);
return 0;
}