using System;
public class Program
{
public static void Main()
// set your age here...
int my_age_int = 36;
if (my_age_int > 65)
Console.WriteLine("You are ready for retirement!");
}
else
Console.WriteLine("You have " + (65 - my_age_int).ToString() + " years to go until you retire.");