from time import sleep # Import sleep function to add delays
sleep(1) # Wait for 1 second before displaying the table
# Print the header for the multiplication table
print("Multiplication Table of 9:")
# Loop through numbers from 1 to 10 to generate the multiplication table
for i in range(1, 11):
print(9, "×", i, "=", 9 * i) # Print multiplication result
sleep(1) # Wait for 1 second before printing the next line