39.9k views
5 votes
To calculate the multiple of 5

1 Answer

5 votes

Answer:

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

multiple = number * 5

print (multiple)

User Mithu
by
5.8k points