public static string WriteExpression(Node node)
throw new NotImplementedException();
public static void Main()
var testData = new Node()
var result = WriteExpression(testData);
Console.WriteLine($"YOUR OUTPUT WAS ==> {result}");
Console.WriteLine(result == expected ? "SUCCESS" : "FAILURE");