View Code of Problem 3689

t = map(input(),int)
temp = 1
while t:
    t -= 1
    a = map(input(),int)
    b = map(input(),int)
    print('Case #%d:'%temp)
    print(a-b)

Double click to view unformatted code.


Back to problem 3689