open import nat module nat_add where _+_ : Nat -> Nat -> Nat O + m = m (S n) + m = S (n + m)