Swift - Functions
What will be the output of this Swift code?
func divide(_ a: Int, _ b: Int) -> (quotient: Int, remainder: Int) {
(a / b, a % b)
}
let result = divide(10, 3)
print(result.quotient, result.remainder)