public static void Main()
State state1 = new State();
State state2 = new State();
Console.WriteLine(state1.x);
Console.WriteLine(state2.x);
Country country1 = new Country();
Country country2 = new Country();
Console.WriteLine(country1.x);
Console.WriteLine(country2.x);