public static void Main()
int MV = 0, TB = 0, X = 0;
Console.WriteLine("Monto de Venta: ");
MV = Convert.ToInt32(Console.ReadLine());
if (MV >= 0 && MV <= 1000)
if (MV >= 1000 && MV <= 5000)
if (MV >= 5000 && MV <= 20000)
Console.WriteLine("Total de Bonificacion: " + TB);