# Create a variable named sentence
sentence = "The quick brown fox jumps over the lazy dog."

# Split out the words in the sentence into a variable named words
words = sentence.split()

# Using a loop, print each word and word number on its own line with each iteration
for i, word in enumerate(words, start=1):
    print(f"{i} {word}")

# Print the word count
print(f"Total of {len(words)} words.")
