using System;
public class Program
{
public static void Main()
GenderType gender = (GenderType)5;
Console.WriteLine(gender);
}
public enum GenderType
Male = 1,
Famale = 2