You are on page 1of 1

#temperature

temp = int(input("introduzca Temperatura: "))


if temp<=0:
print ("seca el aparato")
elif(temp>=1 and temp<=1000):
print ("calido")
elif(temp>=1001 and temp<=2000):
print ("templado")
elif(temp>=2001 and temp<=3000):
print ("frio")
elif(temp>=3001 and temp<=4000):
print("paramo")
elif(temp>=4001 and temp<=5000):
print ("nieves permanentes")
elif(temp>=9000):
print ("piloto automatico")

You might also like