[백준/BOJ] 백준 10950번 : A+B - 3

2020. 7. 18. 01:59알고리즘 문제풀이

https://www.acmicpc.net/problem/10950

 

10950번: A+B - 3

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

a와 b를 입력받고 a+b를 출력하는것을 t만큼 반복한다.

 

코드

#include <iostream>
using namespace std;

int main()
{
	cin.tie(NULL);
	ios_base::sync_with_stdio(false);

	int t;
	int a, b;

	cin >> t;

	//테스트 케이스 만큼 반복한다
	for (int i = 0; i < t; i++)
	{
		cin >> a >> b;
		cout << a + b << "\n";
	}

	return 0;
}