Write a Python program that asks the user enter an integer minutes
as the number of minutes.
Your program should convert the given minutes
into seconds and display the result on the screen, as shown in the examples below.
As you already know, a minute has 60 seconds.
Hint: To enter an integer number, use minutes = int (input("Enter minutes: "))