def tempo_maratona(hp,mp,sp,hc,mc,sc):
    """fdsgdsfhgdsfg dsg sd"""
    return ((hc*3600 + mc*60 + sc)-(hp*3600 + mp*60 + sp))//3600,(((hc*3600 + mc*60 + sc)     -(hp*3600 + mp*60 + sp))        %3600)            //60,(((hc*3600 + mc*60 + sc)     -(hp*3600 + mp*60 + sp))        %3600)            %60
    
