Print the First 3 multiples of the given number "N". (N is a positive integer)
Note: print the characters with a single space between them.
Input Description:
A positive integer is provided to you as an input.
Output Description:
Print the First 3 multiples of the number with single spaces between them as an output.
Sample Input :
2
Sample Output :
2 4 6
Note :
#Getting input via STDIN read user_input variable
>>> Validating your code