Computer Science, asked by ratheeshkarnan007, 2 months ago

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 46

javascript​

Answers

Answered by lokudass6
3

Answer:

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 46

javascript

Answered by projectname98
1

Answer:

n=int(input())

for i in  range (1,4):

      i=i*n

      print(i, end=' ')

Explanation:

Similar questions