fork(4) download
  1. temp = '32'
  2. if temp > 85:
  3. print('Hot')
  4. elif temp > 62:
  5. print('Comfortable')
  6. else:
  7. print('Cold')
Success #stdin #stdout 0.08s 10840KB
stdin
temp = 120
if temp > 85:
	print ('Hot')
elif temp > 100:
	print ('REALLY HOT!')
elif temp > 60:
	print ('Comfortable')
else:
	print ('Cold')
stdout
Hot