Course
Run Code
Open File
limitString = input("enter a positive number:") limit = int(limitString) print("lets count to " + str(limit)) counter = 0 while counter < limit: counter = counter + 1 print(counter) print("all done!")