본문 바로가기
PS 문제 풀이/Baekjoon

[BOJ] 백준 10950 A + B - 3

by 까망 하르방 2021. 2. 28.
반응형

출처: www.acmicpc.net/problem/10950

 Input 
5
1 1
2 3
3 4
9 8
5 2

 Output 

2
5
7
17
7

C++ 기본 입출력 

 

[C++] 기본 입출력

기본 입출력 숫자 a, b를 입력받아 a + b를 출력하는 ※  [BOJ] 10950  A + B - 3 #include #include using namespace std; int main(){ int TestCase; cin >> TestCase; while(TestCase--){ int a, b; cin>>..

zoosso.tistory.com

 


#include <iostream>
#include <cstdio>
using namespace std;
int main(){
	int TestCase;
	cin>>TestCase;
	while(TestCase--){
		int a, b;
		cin>>a>>b;
		cout << a+b << '\n';
	}
	return 0;
}

 

반응형

'PS 문제 풀이 > Baekjoon' 카테고리의 다른 글

[BOJ] 백준 10953 A + B - 6  (0) 2021.02.28
[BOJ] 백준 1100 하얀칸  (0) 2021.02.28
[BOJ] 백준 2261 가장 가까운 두 점  (0) 2021.02.28
[BOJ] 백준 11758 CCW  (0) 2021.02.28
[BOJ] 백준 4354 문자열 제곱  (0) 2021.02.28

댓글