public static void Main()
Console.WriteLine("Введіть число А: ");
int a=int.Parse(Console.ReadLine());
Console.WriteLine("Введіть число В: ");
int b=int.Parse(Console.ReadLine());
Console.WriteLine("Ділити на 0 не можна");
Console.WriteLine("Відповідь: "+a/b);