using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PROSTO
{
static class Program
{ [STAThread]
static void Main()
{
Console.ForegroundColor=ConsoleColor.Green;
Console.WriteLine("Wake up, Neo...");
System.Threading.Thread.Sleep(3228);
Console.Clear();
Console.WriteLine("The Matrix has you");
System.Threading.Thread.Sleep(3228);
Console.Clear();
Console.WriteLine("Follow the white rabbit");
System.Threading.Thread.Sleep(3228);
Console.Clear();
Console.WriteLine("Knock, knock , Neo");
System.Threading.Thread.Sleep(3228);
Console.Clear();
}
}
}