Write a program to input a number and print the first five multiples
Answers
Answered by
4
Answer:
x=int(input("Enter a number : "))
for i in range(1,6):
print(i*x)
Similar questions