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.
*
**
***
****
*****
***/
public static void Main()
Console.WriteLine("This is the output below: ");
Program.printTriangle(2);
}
public static void printTriangle(int size) {
// Sample
Console.WriteLine("*");
Console.WriteLine("**");
// End Sample