using System;
public class Program
{
/***
Challenge: Write a program that print the following on the console:
Designa function that will print this having a parameter of the size of the triangle.
1
12
123
1234
12345
***/
public static void Main()
Console.WriteLine("This is the output below: ");
Program.printTriangle(2);
}
public static void printTriangle(int size) {
// Sample
Console.WriteLine("1");
Console.WriteLine("12");
// End Sample