View Code of Problem 109

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

Double click to view unformatted code.


Back to problem 109