num = int(input("Enter num for multiplication table : "))
for i in range(1,11): print(f"{num} x {i} = {num*i}")