Read an integer N and print its multiplication table from to .
Format: N x i = result
Example for N=:
3 x 1 = 3
3 x 2 = 6
...
3 x 10 = 30
Use a for loop with range(1, 11) to iterate through multipliers. Use an f-string to format the output exactly as shown.