using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
namespace helloworld
{
	class Program 
	{
		public static void Main(string[] args) 
		{	
			Console.WriteLine("Hello World!"); 
			Console.ReadLine();
		}
	}
}
