3 lines
107 B
Python
3 lines
107 B
Python
for i in range(int(input())):
|
|
a,b = map(int,input().split())
|
|
print("Case #"+str(i+1)+":",a,"+",b,"=",a+b) |