using System;
public class Program
{
public static void Main()
//Sara Jaramillo
int x;
Console.WriteLine("How old are you?");
x = int.Parse(Console.ReadLine());
if (x > 16)
Console.WriteLine("WELCOME!");
}
else
Console.WriteLine("SORRY, THIS PAGE IS ONLY FOR PEOPLE OLDER THAN 16.");
Console.WriteLine();
Console.WriteLine("Thanks");