count = int(input("enter a number")) while count < 100000: print(count) count += 1 if count == 100000: print("100000!!!") print("well done!")