*
+ 2
8 5
//output -> "8+5*2"
public class Node
{
public Node Left;
public Node Right;
public string Value;
}
public string WriteExp(Node node)