using System.Collections.Generic;
using System.Collections.Generics.Stack<T>;
public static void Main()
string expression = Console.ReadLine();
Stack<T> stack = new Stack<T>();
bool correctBrackets = true;
for(int index = 0;index < expression.Length;index++)
char ch = expression[index];
Console.WriteLine("Are the brackets correct? " + correctBrackets);