
using System;
namespace HelloWorldApplication
{
class HelloWorld
{
static void Main(string[] args)
{
/* Write C# code in this online editor and run it. */
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}