Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. V = int(input())
  4. if V < 60:
  5. print('Лёгкий вес')
  6. elif V >= 60 and V < 64:
  7. print('Первый полусредний вес')
  8. elif V >= 64 and V < 69:
  9. print ('Полусредний вес')
  10. else:
  11. print('Этот боксёр не любитель!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement