Humidity Level
Task
Complete the code to output "norm" if the taken percent of humidity is in the range of 40 and 60 inclusive. Don't output anything otherwise.
Sample Input
45
Sample Output
norm
humidity = int(input())
#your code goes here
if humidity >= 40 and humidity <=60:
print("norm")
Last updated