#do it without if statements
def is_after(t1, t2):
	"""takes two time objects
	returns True if t1 follows t2 chronologically
	"""
	time1 = ''.join(str(t1.hour)).join(str(t1.minute)).join(str(t1.second))
	time2 = ''.join(str(t2.hour)).join(str(t2.minute)).join(str(t2.second))
	return int(time1) > int(time2)