using System;
public class Program
{
public static void Main()
//Ximrna Galindo Ramos
int age;
Console.WriteLine("Hello! How are you?");
age = int.Parse(Console.ReadLine());
if (age >= 16 )
Console.Write("WELCOME!!");
}
else
Console.Write(" SORRY, THIS PAGE IS ONLY FOR PEOPLE 16 OR OLDER.");