public void toHMS(int ss){ int hour = ss/3600;int min = (ss - (hour*3600))/60;int s = ss-(hour*3600+min*60);System.out.println(hour+":"+min+":"+s);}