OJ-Problems-Source/HDOJ/1090_autoAC.cpp

12 lines
182 B
C++

#include <stdio.h>
int main(void)
{
int a, b, n;
scanf("%d", &n);
while(n--&&scanf("%d%d", &a, &b))
{
printf("%d\n", a + b);
}
return 0;
}