func takeClosureTwo(valueOne:Int,valueTwo:Int,closure:((Int,Int)->Int)) { let result = closure(valueOne, valueTwo) print(result) }