https://www.acmicpc.net/problem/9295
t = int(input()) for i in range(t): a, b = map(int, input().split()) print(f"Case {i + 1}: {a + b}")