public static void Main()
Console.Write("Bill To");
Console.WriteLine(new String (' ',69) + ("Invoice No: #INVO2081"));
Console.WriteLine("{0}{1,85}{2}","John","Invoice Date:",(DateTime.Now.ToString(" 2023/2/14")) );
Console.WriteLine("{0}{1,63}{2}","284 Colton Cir,Kitchener","Due Date:",(DateTime.Now.ToString(" 2023/2/14")) );
Console.WriteLine("mangalinojohnemmanuel@gmail.com");
Console.WriteLine("226 978-2499");
Console.WriteLine(new String ('_',101));
Console.WriteLine("{0,-40}{1,20}{2,20:C2}{3,20:C2}","DESCRIPTION","QTR/HR","UNIT PRICE","TOTAL");
Console.WriteLine(new String ('_',101));
Console.WriteLine("{0,-40}{1,20}{2,20:C2}{3,20:C2}","Coca Cola",10,2,20);
Console.WriteLine(new String ('_',101));
Console.WriteLine("{0,-40}{1,20}{2,20:C2}{3,20:C2}","Installed new sink",3,50,150);
Console.WriteLine(new String ('_',101));
Console.WriteLine("{0,-40}{1,20}{2,20:C2}{3,20:C2}","Jordan 4 White Oreo",1,603,603);
Console.WriteLine(new String ('_',101));
Console.WriteLine("{0,-40}{1,20}{2,20:C2}{3,20:C2}","RedBull Drink",1,2,2);
Console.WriteLine(new String ('_',101));
Console.WriteLine("{0,-40}{1,20}{2,20:C2}{3,20:C2}","Snow Tire",4,120,480);
Console.WriteLine(new String ('_',101));
Console.WriteLine(new String (' ',71) + ("SUB TOTAL $1,255.00"));
Console.WriteLine(new String (' ',72) + ("DISCOUNT $50.00"));
Console.WriteLine(new String (' ',58) + ("SUBTOTAL LESS DISCOUNT $1,205.00"));
Console.WriteLine(new String (' ',72) + ("TAX RATE 13.00%"));
Console.WriteLine(new String (' ',71) + ("TOTAL TAX $156.65"));
Console.WriteLine(new String ('_',101));
Console.WriteLine(new String (' ',69) + ("Balance Due $1,361.65"));
Console.Write("Thank you for you purchase! Have a Good Day!");