using System;
public class Program
{
public static void Main()
double age;
Console.WriteLine("Introduce your age: ");
age= Convert.ToDouble(Console.ReadLine());
if (age < 17)
Console.WriteLine("You are able to get ID");
}
else
Console.WriteLine("You can't get it yet");