I am trying to solve the following coupled system:
$$ \left\{\begin{aligned} U_t + \lambda_1 U_x &= 0 \\ V_t - \lambda_2 V_x &= c(x) U(x,t) \\ U(0,t) + k_{0} V(0,t) &= 0 \\ V(L,t) - k U(L,t) &= 0 \end{aligned}\right. $$
where $\lambda_{1} = 70, \lambda_{2} = 20, c(x) = - 24e^{-12x/35}, k_{0} = 2/7$ and $k=e^{-12/35}$.
I would like to discretize these coupled PDEs and I tried writing out using finite difference methods, but how do I deal with $U(x,t)$ on the right side of the second-line equation of the system?