def car(v1, v2, x, t):
    v1 = v1 / 3.6
    v2 = v2 / 3.6
    seconds = (x-v2*t)/(v1-v2)
    return seconds
