Multiplication Table

Write a function that prints the multiplication table for a given number up to 10.
        
       Input:-5
       Input Description: Input: Number 
       Output: 5, 10, 15, 20, 25, 30, 35, 40, 45, 50
       Output Description:  Multiplication table. 
       Constraints: 1 <= number <= 1000
       Explanation: 

Loading...