write the program to print the sum of first five multiple of a numbers
Answers
Answered by
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