Multiplication Table

 Write a program to print the multiplication table for the given Number


Input 1:Positive number

Output: Multiplication table of the corresponding number

Refer sample input and output for formatting specification.


a=int(input())
for i in range(1,a):
  print(a, '*', i, '=', a*i)

Comments