赞
踩
1 2 3 4
3 7
#include<stdio.h> int main() { int a,b,c; while(scanf("%d %d",&a,&b)!=EOF) { c=a+b; printf("%d\n",c); } }