Stuck on a C# Pro exercise Problem...
You are organizing a birthday party and need N number of balloons. You already have 14 balloons for decoration. The given program takes the N required number of balloons as input. Task Calculate and output how many balloons you need to buy. Sample Input 30 Sample Output 16 Explanation The count of the balloons you need to buy is calculated by this formula: balloons-14. So, in this case, the count is 30-14=16. (So I put the code: int x = 30; int y = 14; Console.WriteLine(x-y); And it says I'm correct in answering the first test case, but then there's 2 more test cases below the first that says I'm wrong because I didn't get THEIR outputs. So how do I tweak the code so that I give the correct outputs for all three test cases instead of just getting one test case correct????? )