"#####Temperatura de los servidores######"
temperatura_permitida = 25;
temperatura_entrada = int(input("Digite la temperatura actual: "))
if (temperatura_permitida < temperatura_entrada):
print("!ALERTA! TEMPERATURA POR ENCIMA DE LO PERMITIDO.")
elif (temperatura_permitida > temperatura_entrada):
print("!ALERTA! TEMPERATURA POR DEBAJO DE LO PERMITIDO.")
else:
print("TEMPERATURA PERMITIDA.")