[BOJ/C++] 10952 A+B - 5

mani·2023년 5월 19일
0

baekjoon_step

목록 보기
31/73

0 0이 들어올 때까지 A+B를 출력하는 문제

#include <iostream>

using namespace std;

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

	int a, b;
	while (1) {
		cin >> a >> b;
		if (a == 0 && b == 0)
			break;
		cout << a + b << "\n";
	}

	return 0;
}
profile
log

0개의 댓글