多组输入a+b II
#include <math.h> int main() { int a,b,i; scanf("%d",&i); while(i!=0){ scanf("%d %d",&a,&b); printf("%d\n",a+b); i--; } return 0; }