View Code of Problem 109

#include <stdio.h>

int main(){
	long long t,a,b; 
	//输入:1个整数t,t对整数ab
	scanf("%lld", &t);
	while(t--){
		scanf("%lld %lld", &a, &b);
		//处理 
		//输出:1个整数 
		printf("%lld\n", a+b);
	}
	
}

Double click to view unformatted code.


Back to problem 109