Computer Science, asked by sy9087242, 1 month ago

write the program to print the sum of first five multiple of a numbers​

Answers

Answered by samyuta
0

Explanation:

n = int(input("Enter number: "))

print("First five multiples of", n, "are")

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

Similar questions