public static void Main()
Console.WriteLine("Product Name");
string Pname1 = Console.ReadLine();
Console.WriteLine("Price");
decimal Cost = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("Quantity");
int Quantity = Convert.ToInt32(Console.ReadLine());
decimal Total = Cost * Quantity;
Console.WriteLine("Total Cost Of " + " " + Total);
Decimal VAT = Total * 15/100;
Console.WriteLine("VAT......... R" + " " + VAT);
decimal TotalVatInc = Total + VAT;
Console.WriteLine("Total Cost Vat Inclusive R" + " " + TotalVatInc);