#!/usr/bin/env python3

from datetime import timedelta
from sys import argv

print(timedelta(seconds=int(argv[1])))
