print("Da un valor en segundos")
seg=int(input())
horas=seg//3600
minutos=(seg%3600)//60
segundos=seg%60
print(f"{seg} segundos son {horas} horas, {minutos} minutos y {segundos} segundos")
To embed this project on your website, copy the following code and paste it into your website's HTML: