'''while 条件满足式 :
    执行语句
    '''
a=int(input("输入一个数"))
while a<5 :
    print("输入的值小于5")