# Exercice 2

# a)
n = 1000
while not n <= 100:
    n = int(input("nombre ? "))
print(n, "est inférieur ou égal à 100.")

# b)
n = 1000
while not (n <= 100 and n >= 50):
    n = int(input("nombre ? "))
print(n, "est entre 50 et 100 inclus.")