Test2


using System;

namespace test2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("This line \tcontains two \ttabs");
            Console.WriteLine("This statement\ncontains a new line");
            Console.WriteLine("This statement sound three alerts\a\a\a");
            Console.ReadLine();
        }
    }
}