using System;
public class Program
{
public static void Main()
Console.WriteLine("Input your birth year : ");
int year = int.Parse(Console.ReadLine());
int age = 2565 - year;
Console.Write("Youe age {0}",age);
if(>= 20)
Console.Write("\nCan Vote");
}
else
Console.Write("\nCan't Vote");