Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- T = int(input())
- for t in range(T):
- a, b, c = map(int, input().split())
- if a > b and a > c:
- print('Case ' + str(t+1) + ': A')
- elif b > a and b > c:
- print('Case ' + str(t+1) + ': B')
- elif c > a and c > b:
- print('Case ' + str(t+1) + ': C')
- else:
- print('Case ' + str(t+1) + ': Confused')
Add Comment
Please, Sign In to add comment