Sofya_Soloveva_

Untitled

Jul 5th, 2019
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. weight = int(input())
  2. f = 'Категория -'
  3. if weight < 60:
  4.     print(f,'легкий вес')
  5. elif weight >= 60 and weight <= 64:
  6.     print(f,'первый полусредний вес')
  7. elif weight >= 65 and weight <= 69:
  8.     print(f,'полусредний вес')
Advertisement
Add Comment
Please, Sign In to add comment