Console.Write("Въведете сума в лева: ");
decimal amountInLeva = decimal.Parse(Console.ReadLine());
decimal exchangeRate = 1.95583m;
decimal amountInEuro = Math.Round(amountInLeva / exchangeRate, 2);
Console.WriteLine($"Резултат: {amountInEuro} евро");