[BOJ/C++] 11022 A+B - 8

mani·2023년 5월 18일
0

baekjoon_step

목록 보기
28/73

A+B를 바로 위 문제보다 아름답게 출력하는 문제

#include <iostream> 

using namespace std;

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

	int T, A, B;
	cin >> T;
	for (int i = 0; i < T; i++) {
		cin >> A >> B;
		cout << "Case #" << i + 1 << ": " << A << " + " << B << " = " << A + B << "\n";
	}

	return 0;
}
profile
log

0개의 댓글