I'm trying to use a lemma for a bigger proof, but I can't find a way to prove one of those two things. Can somebody help me? Here is the proof so far:
Lemma less_r : (forall m n p : nat, n + m < p + n + m).
Proof.
intros.
apply PeanoNat.Nat.add_lt_mono_r.
apply PeanoNat.Nat.lt_add_pos_l.
admit.
Qed.