Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Cel = float(input())
- if Cel >=26 and Cel <=35:
- print('Hot')
- elif Cel >= 20.1 and Cel <=25.9:
- print('Warm')
- elif Cel >= 15 and Cel <= 20:
- print('Mild')
- elif Cel >= 12 and Cel <= 14.9:
- print('Cold')
- elif Cel >= 5 and Cel <= 11.9:
- print('Cold')
- else:
- print('unknown')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement