using System;
namespace Nomer5
{
class Program
static void Main(string[] args)
int a, b, c;
Console.WriteLine("Введите валовой сбор");
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите площадь");
b = Convert.ToInt32(Console.ReadLine());
c = a / b;
Console.WriteLine("Урожайность равна " + c);
Console.ReadKey();
}
using System;
namespace Nomer5
{
class Program
{
static void Main(string[] args)
{
int a, b, c;
Console.WriteLine("Введите валовой сбор");
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите площадь");
b = Convert.ToInt32(Console.ReadLine());
c = a / b;
Console.WriteLine("Урожайность равна " + c);
Console.ReadKey();
}
}
}