Hi,
You can use the function millis()
This returns a long which is the milliseconds since the Arduino last reset (well pretty much).
So, in pseudo code:
when trigger1 tripped
t1 = millis()
when trigger2 tripped
t2 = millis()
dt = t2 - t1
display dt on LCD