import random #0
def answer(): #0
random.seed(int(input())) #1
num=random.randint(0,100) #1
count=0 #1
while True: #1
g=int(input('...')) #2
if g < num: #2
print('...') #3
elif g > num: #2
print('...') #3
else: #2
print('....') #3
break #3
count += 1 #2
#注释为缩进层级