import Foundation // Enter your code here let numberOfScenarios = Int(readLine()!)! func profit(burger: Int, soda: Int, combo: Int) -> Int { return (burger + soda) - combo } for _ in 0..