Write a program that inputs a temperature and then outputs either Too cold! if the temperature is below 20, Too hot! if it is above 30, or Very nice! otherwise.

Example

$ python3 program.py
15
Too cold!
$ python3 program.py
25
Very nice!
$ python3 program.py
35
Too hot!