using System;
public enum CountryCode
{
FI = 1,
ES = 2,
NL = 3
}
public class Program
public static void Main()
bool male = false;
var CountryCode = new CountryCode();
Console.WriteLine(CountryCode);