You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
371 B

from random import randint
def guess_num():
target = randint(0, 65535)
num = int(input())
while True:
if num < target:
print("too small")
elif num == target:
print("done")
break
elif num > target:
print("too big")
num = int(input())
if __name__ == "__main__":
guess_num()