User-1272736690 posted
static void Main(string[] args)
{
Console.WriteLine("Введiть цiну в Злотих :");
decimal a;
a = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine("Введiть курс Злотого :");
decimal b;
b = Convert.ToDecimal(Console.ReadLine());
Console.WriteLine((decimal)(a / 1.23) * b);
Console.ReadKey();
}
Guys I`m new to C# and I need help, cannot solve this problem :(