addamsson
extension Int : Monoid { fun Int.combine(b: Int): Int = this + b fun Int.Companion.empty(): Int = 0 }