using System;
public class Program
{
public static void Main()
//Silvana Chávez
int age;
Console.WriteLine("Hello, how old are you?");
age = int.Parse(Console.ReadLine());
if (age > 16 )
Console.WriteLine(" WELCOME ");
}
else
Console.WriteLine("Sorry, this page is only for people oldrr than 16");