Home » Multiplication December 13, 2024 · Fahad n = int(input("Enter the number: ")) for i in range(1, 11): print(n, "x", i, "=", i*n) Run