Computer Science, asked by jagdish1581, 10 months ago

Write a program to input a number nd print it's first five mmultiples

Answers

Answered by rani49035
1

Explanation:

in which language buddy......

Answered by abhinav1234567
1

Answer:

x=int(input("Enter a number : "))

for i in range(1,6):

print(i*x)

OR

# Code

a = int(input())

print(a, 2*a, 3*a, 4*a, 5*a)

I HOPE IT WILL HELP U

Similar questions