public static void Main()
Console.WriteLine("How many prey");
int iPrey = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many predator");
int iPredator = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many generations?");
int iGenerations = Convert.ToInt32(Console.ReadLine());
for (int x=iGenerations; x > 0; x--)
double preyGrowthRate = A - (C * iPredator);
double finalPreyGrowthRate = Math.Pow(E , preyGrowthRate);
int newPrey = Convert.ToInt32((finalPreyGrowthRate*iPrey) / 1);
Console.WriteLine(newPrey);
double predatorGrowthRate = (D*C*newPrey)-B;
double finalPredatorGrowthRate = Math.Pow(E , predatorGrowthRate);
int newPredator = Convert.ToInt32((finalPredatorGrowthRate*iPrey) / 1);
Console.WriteLine(newPredator);