using System;
public class Program
{
public static void Main()
int n= 5;
int i =0;
while(i < n)
string s= new string('#', i+1);
Console.WriteLine(String.Format("{0,"+n+"}",s));
i++;
}
Console.WriteLine(String.Format("{0,10} | {1,-10} | {2,5}", "Bill", "Gates", 51));