using System;
public class Program
{
public static void Main()
int year,x,age;
Console.Write("Input your birth year :");
year = int.Parse(Console.ReadLine());
x = 2559;
age = x - year ;
Console.WriteLine("Your age : {0}",age);
if (age >= 18)
Console.WriteLine("Can vote");
else
Console.WriteLine("Can't vote");
}