AlimusSifar

Arya’s Counting - Toph.co - Brute Force

Apr 24th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. T = int(input())
  2.  
  3. for t in range(T):
  4.     a, b, c = map(int, input().split())
  5.    
  6.     if a > b and a > c:
  7.         print('Case ' + str(t+1) + ': A')
  8.     elif b > a and b > c:
  9.         print('Case ' + str(t+1) + ': B')
  10.     elif c > a and c > b:
  11.         print('Case ' + str(t+1) + ': C')
  12.     else:
  13.         print('Case ' + str(t+1) + ': Confused')
Add Comment
Please, Sign In to add comment