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

12 lines
182 B
C++
Raw Normal View History

2016-08-12 10:52:18 +08:00
#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;
}