38. implement Add<A, B>

  -通过 / -执行

请实现Add<A, B>计算正整数之和。

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

争取10分钟以内搞定这个问题

(22)