using System;
namespace HelloWorld
{
public class Program // class called program
public static void Main() // method called main
Console.WriteLine("Hello World"); // console is the class and writeline is the method
Console.ReadLine();
}