38. implement Add<A, B>

  - accepted / - tried

Implement Add<A, B> to get the sum of two positive integers.

type A = Add<1, 2> // 3
type B = Add<0, 0> // 0

Let's try to solve this problem within 10 minutes.

(22)