public static void Main()
Console.Write("Enter the quantity in dollars ") ;
dollars = Convert.ToDouble(Console.ReadLine()) ;
Console.Write("Enter the dollar value ") ;
dollar_value = Convert.ToDouble(Console.ReadLine()) ;
pesos = (dollars * dollar_value) ;
Console.WriteLine("The quantity in pesos are " + pesos) ;