using System;
public class Program
{
public static void Main()
Division();
Console.WriteLine(" Hello World");
}//Only the things up to these point yung gagawin ng program.
public static void Division()//Can use anything, other than "Division".
Console.WriteLine("=====================");
}//Everything within the "{}" will be displayed using the indicated name ("Division();")
}