Computer Science, asked by btsarmyrockers, 9 months ago

Write a program to input a number and print the first five multiples

Answers

Answered by Anonymous
4

Answer:

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

for i in range(1,6):

  print(i*x)

Similar questions