public static void Main()
double pc,fee,total=0.0 ;
Console.Write("Enter your parcel: ");
pc = float.Parse(Console.ReadLine());
else if (pc >= 301 && pc <=1000)
else if (pc >= 1001 && pc <=2000)
Console.Write("parcel: {0} grams = {1}×{2} = {3} Bath",pc,pc,fee,total);