https://www.acmicpc.net/problem/11022
t=int(input()) for i in range(1,t+1): a,b=map(int,input().split()) print("Case #%d: %d + %d = %d"%(i,a,b,a+b))