public static void Main()
Console.WriteLine("Celso Reyes");
Console.Write("Detrermine a specific age is eligible for casting the vote:\n");
Console.Write("----------------------------------------------------------");
Console.Write("Input the age of the candidate : ");
vote_age= Convert.ToInt32(Console.ReadLine());
Console.Write("Sorry, You are not eligible to caste your vote.\n");
Console.Write("You would be able to caste your vote after {0} year.\n\n",18-vote_age);
Console.Write("Congratulation! You are eligible for casting your vote.\n\n");