0 Comments
Program:
fever = False
temperature = input("Input your temperature: ")
if temperature > 98.6:
fever = True
else:
print(fever)