OneCompiler

Multiplication Table

132

f=int(input("enter a multiplication table"))
for i in range(1,11):
print("%d x %d = %d" %(i,f, i*f))