Advertisement
repente

Untitled

Nov 4th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. a = int(input()) # min time sleep
  2. b = int(input()) # max time sleep
  3. h = int(input()) # current time sleep
  4.  
  5. if a <= b:
  6. if h < a:
  7. print('Недосып')
  8. elif h > b:
  9. print('Пересып')
  10. else:
  11. print("Это нормально")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement