public class Program
{
public static void Main()
// In this program we have removed the using directive, so to use Console.WriteLine we need to specify that it can be found in the "System" namespace
System.Console.WriteLine("Hello World");
}