using System; // TODO: your MyStack class goes here class Program { static bool CheckBalancedParenthesis(string input) { MyStack stack = new MyStack(); // TODO: Do something here return false; } static void Main(string[] args) { Console.WriteLine(CheckBalancedParenthesis("(a+b)*(c+d)")); // True Console.WriteLine(CheckBalancedParenthesis("(a+b)*(c+d")); // False } }