View Code of Problem 109

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

Double click to view unformatted code.


Back to problem 109