using System;
public enum OrderType
{
Buy,
Bid = Buy,
Sell,
Ask = Sell
}
public class Program
public static void Main()
Console.WriteLine("Hello World");
OrderType o = OrderType.Buy;
Console.WriteLine(o);
OrderType o2 = OrderType.Bid;
Console.WriteLine(o2);
OrderType o3 = OrderType.Sell;
Console.WriteLine(o3);
OrderType o4 = OrderType.Ask;
Console.WriteLine(o4);