11 lines
203 B
Python
11 lines
203 B
Python
nbMesures = int(input())
|
|
tempMin = int(input())
|
|
tempMax = int(input())
|
|
temp = int(input())
|
|
|
|
while temp <= tempMax and temp >= tempMin:
|
|
print("Rien à signaler")
|
|
temp = int(input())
|
|
|
|
print("Alerte !!")
|