xxxxxxxxxx
seconds = 12345 # Replace with the actual number of seconds you want to convert
hours = seconds // 3600
minutes = (seconds % 3600) // 60
seconds = seconds % 60
time_format = f"{hours:02d}:{minutes:02d}:{seconds:02d}"
print(time_format)