0
What wrong with my code?
Write a program that checks if the water is boiling. Take the integer temperature in Celsius as input and output "Boiling" if the temperature is above or equal to 100. Sample Input 105 Sample Output Boiling
4 Answers
+ 3
Put the world boiling in speech marks so it's:
print("Boiling")
0
temp = int(input())
if temp >= 100:
print(Boiling)
0
Thanks
0
print("Boiling" if int(input()) > 99 else None)