Fill in the blanks
# Create a program that counts from 0 to 99!
counter =
print("Welcome to the Python Counter!")
# Create a 'forever' loop
while :
print("I have found", counter, "snakes so far...")
print("Ooh! A snake!")
counter
# Stop the loop when we reach 100
# Otherwise, go to the next number
if counter == 100:
print("Done counting snakes")