using System;
public class Program
{
public static void Main()
//Zara Moreno
int age;
Console.WriteLine("Hi, 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 older than 16");