0
What's wrong with the py code?
temp = int(input()) if temp >=100: print("Boiling")
1 Resposta
+ 3
the code block in the if-statement is not indented. Check the given examples again and pay attention to indentation.
temp = int(input()) if temp >=100: print("Boiling")