new seg = (2 * 86000) + 9648; printf("%d dias, %d horas, %d minutos e %d segundos", seg / 86000, (seg % 86000) / 3600, (seg % 3600) / 60, seg % 60);