Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- T = int(input())
- for t in range(T):
- a, b = map(int, input().split())
- sum = a + b
- sub = a - b
- print('Case %i: ' %(t+1) + str(sum) + str(sub))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement