def serche(list1):
    num = 1
    while True:
        if num not in list1:
            print(num)
            break
        num+=1

 

相关文章: