#include <iostream>
using namespace std;
int main(){
int N;
cin >> N;
for(int i=1; i<=N; i++) {
int x, y;
cin >> x >> y;
cout << "Case " << i << ": " << x + y << '\n';
}
return 0;
}
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 17144 - 미세먼지 안녕! (0) | 2024.07.16 |
---|---|
[알고리즘] 백준 17070 - 파이프 옮기기 1 (0) | 2024.07.14 |
[알고리즘] 백준 13752 - 히스토그램 (0) | 2024.07.12 |
[알고리즘] 백준 25372 - 성택이의 은밀한 비밀번호 (0) | 2024.07.11 |
[알고리즘] 백준 13277 - 큰 수 곱셈 (0) | 2024.07.10 |