View Code of Problem 3689

t = int(input())
i = 1
while t != 0:
    t -= 1
    a = int(input())
    b = int(input())
    print('Case #{}:'.format(i))
    i+=1
    print(a-b)

Double click to view unformatted code.


Back to problem 3689