using System;
public class Program
{
/* Main entry-point of application */
public static void Main()
//Declare local variables for void main
string output = "Hello World";
//call our overloaded method to display our hello world
method(output, 10);
//EOP -> End of Program
}
//First method, receives an input string
public static void method(string input)
//Prints out the input
Console.WriteLine(input);
//Send method, overloaded to receive a string and integer
public static void method(string input, int count)
//Loop the amount of times of the integer
for(int i = 0; i < count; i++)
//Call out first method each iteration
method(string.Format("{0}: {1}", i + 1, input));