public static void Main()
String name = "Notebook N-Series 7";
double total=price*amount;
double vat=total+(total*7/100);
Console.WriteLine("PRODUCT ID = {0}",id);
Console.WriteLine("PRODUCT NAME = {0}",name);
Console.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - - -");
Console.WriteLine("ITEM {0} items.",amount);
Console.WriteLine("PRICE {0:n} baht.",price);
Console.WriteLine("TOTAL {0:n} baht.",total);
Console.WriteLine("- - - - - - - - - - - - - - - - - - - - - - - - - - - - -");
Console.WriteLine("VAT 7% {0:n2} baht.",vat);