Swift - Functions
Find the mistake in this Swift code:
func multiply(_ a: Int, _ b: Int) -> Int {
return a * b
}
let operation: (Int, Int) -> Int = multiply
print(operation)