Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- speed = float(input())
- if speed <= 10:
- print('slow')
- elif speed <= 50:
- print('average')
- elif speed <= 150:
- print('fast')
- elif speed <= 1000:
- print('ultra fast')
- else:
- print(('extremely fast'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement