public static void Main()
Console.WriteLine("BILL TO");
Console.WriteLine(new String (' ',45));
Console.WriteLine(new String ('=',10) + new String (' ',47) + "Invoice No: #inv12345");
Console.WriteLine(new String (' ',45));
Console.WriteLine("Aidan Gimbel" + new String (' ',45) + "Invoice Date: 13/9/2023");
Console.WriteLine(new String (' ',45));
Console.WriteLine("4 High St." + new String (' ',47) + "Due Date: 15/9/2023");
Console.WriteLine(new String (' ',45));
Console.WriteLine("Aidangimbel@email.com");
Console.WriteLine(new String (' ',45));
Console.WriteLine("(519)-576-6557");
Console.WriteLine(new String (' ',45));
Console.WriteLine(new String ('=',80));
Console.WriteLine("{0,0}{1,-57}{2}{3,-6}{4}{5,-7}{6}{7}{8,-3}","|","Item Description","|","Qty","|","Price","|","Total","|");
Console.WriteLine(new String ('=',80));
Console.WriteLine("{0,-58}{1}{2,-6}{3}{4,-7}{5}{6}{7,4}","|Keyboard","|","1","|","65","|",1 * 65,"|");
Console.WriteLine("{0,-58}{1}{2,-6}{3}{4,-7}{5}{6}{7,4}","|Mouse","|","1","|","25","|",1 * 25,"|");
Console.WriteLine("{0,-58}{1}{2,-6}{3}{4,-7}{5}{6}{7,4}","|Notebook","|","4","|","7","|",4 * 7,"|");
Console.WriteLine("{0,-58}{1}{2,-6}{3}{4,-7}{5}{6}{7,5}","|Pencil","|","2","|","3","|",2 * 3,"|");
Console.WriteLine("{0,-58}{1}{2,-6}{3}{4,-7}{5}{6}{7,5}","|Sticky Notes","|","3","|","2","|",3 * 2,"|");
Console.WriteLine("{0,-58}{1}{2,-6}{3}{4,-7}{5}{6}{7,5}","|Eraser","|","2","|","2","|",2 * 2,"|");
Console.WriteLine("{0,-58}{1}{2,-6}{3}{4,-7}{5}{6}{7,4}","|Calculator","|","1","|","15","|",1 * 15,"|");
Console.WriteLine(new String ('=',80));
Console.WriteLine("{0,72}{1}{2,6}{3}","Subtotal ","|",65 + 25 + 28 + 6 + 6 + 4 + 15,"|" );
Console.WriteLine(new String (' ',72) + "|" + new String (' ',6) + "|");
Console.WriteLine("{0,72}{1}{2,6}{3}","Discount ","|",30,"|" );
Console.WriteLine(new String (' ',72) + "|" + new String (' ',6) + "|");
Console.WriteLine("{0,-49}{1}{2,-4}{3}{4}", "Thank you for shopping with us!", "Subtotal Less Discount ","|",149 - 30,"|" );
Console.WriteLine(new String (' ',72) + "|" + new String (' ',6) + "|");
Console.WriteLine("{0,72}{1}{2,6:P0}{3}","Tax Rate ","|",0.13,"|" );
Console.WriteLine(new String (' ',72) + "|" + new String (' ',6) + "|");
Console.WriteLine("{0,72}{1}{2,6}{3}","Total Tax ","|",119 * 0.13,"|" );
Console.WriteLine(new String ('=',80));
Console.WriteLine("{0,72}{1}{2,6:C0}{3}","Balance Due ","|",119 * 0.13 + 119,"|" );