Advertisement
AlimusSifar

Mysterious Sum - Toph.co - Implementation

Apr 27th, 2020
540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. T = int(input())
  2.  
  3. for t in range(T):
  4.     a, b = map(int, input().split())
  5.     sum = a + b
  6.     sub = a - b
  7.     print('Case %i: ' %(t+1) + str(sum) + str(sub))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement