t=int(input()) for i in range(1,t+1): a,b=map(int,input().split()) print('Case #{}: {}'.format(i,a+b))
map함수를 이용해 한줄에 두개의 값을 입력받고, format함수를 사용해 출력해주었다.