Q4Single correct3 Marks22 Dec 2024
Given snippet of code below, depending on the value of {placeholder} what will be the output if the input temp is 92?
```
temp = int(input())
if temp > 100:
state = 'Hot'
else:
state = 'Very Warm'
{placeholder} temp > 60:
if temp > 70:
state = 'Warm'
else:
state = 'Cool'
print(state)
```