import Foundation func solution(_ num1:Int, _ num2:Int) -> Int { var answer: Int answer = num1 - num2 return answer }