t=int(input()) for i in range(1,t+1): a,b=map(int,input().split()) print('Case #{}: {} + {} = {}'.format(i,a,b,a+b))
11021번과 세트 문제이다.