func addOne(left a: Int, right b: Int) -> Int { return a + b } func addTwo(a: Int = 0, b: Int = 0) -> Int { return a + b }
정답 : 3