# Ask the user to enter the number for which they want to see the multiplication table
number = int(input("Enter a number: "))
# Use a for loop to iterate over the numbers 1 through 10
for i in range(1, 11):
# Calculate the result of the multiplication and store it in a variable
result = number * i
# Print the multiplication table row
print(f"{number} x {i} = {result}")