chap1_act5.py

Created by 3-0-snt2de-2019

Created on May 27, 2020

210 Bytes


from random import *
x = randint(1,100)
e = int(input("Devine ? "))
while e != x:
    if e < x:
        print("Plus grand")
    else:
        print("Plus petit")
    e = int(input("Essai ? "))