Makerlab Juniors - Check if You Have a Fever

View as PDF

Submit solution

Points: 5
Time limit: 1.0s
Memory limit: 16M

Author:
Problem types
Allowed languages
Blockly, C, C++, Java, Pascal, Python
Check if You Have a Fever

Write a program that reads an integer from the input, representing the body temperature measured with a thermometer.

The program should check if the temperature is greater than 38.

If the temperature is greater than 38, display the message: You have a fever.

Otherwise, display the message: No fever.

Examples

Input

37

Output

No fever

Input

39

Output

You have a fever

Comments