public static void Main()
Console.WriteLine("Введите первую переменную");
string fc = Console.ReadLine();
Console.WriteLine("Укажите действие");
string act = Console.ReadLine();
Console.WriteLine("Введите вторую переменную");
string sc = Console.ReadLine();
double dfc = double.Parse(fc);
double dsc = double.Parse(sc);
Console.WriteLine(dfc + dsc);
Console.WriteLine(dfc - dsc);
Console.WriteLine(dfc*dsc);
Console.WriteLine(dfc/dsc);