public static void Main()
Console.WriteLine("Enter the price of the vegetables:");
double priceVegs = double.Parse(Console.ReadLine());
Console.WriteLine("Enter the price of the fruits:");
double priceFruits = double.Parse(Console.ReadLine());
Console.WriteLine("Enter the amount of vegetables:");
int AllVeggies = int.Parse(Console.ReadLine());
Console.WriteLine("Enter the amount of fruits:");
int AllFruits = int.Parse(Console.ReadLine());
double IncomeVegs = priceVegs * AllVeggies;
double IncomeFruits = priceFruits * AllFruits;
double AllPricesLev = IncomeVegs + IncomeFruits;
double Euro = AllPricesLev * 1.94;
Console.WriteLine("{0:F2}", Euro);