numero = int(input("Ingresa un numero:"))
h= str("minutos")
#min= numero//60
print (min)
print (h)
dec = round((numero*60),2)
Exercise 1.4
Write a code in which you request by screen that the user enter a number (the units are seconds). Once the number is entered, calculate:
Print both values on the screen.
Example: if the user enters 90, that would print 1 minute and 30 seconds.
Tip: Read about the function input()