using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _14
{
class Program
{
static void Main(string[] args)
{
int x = 0;
for (int a = 0; a <= 50;a++ )
{
for (int b = 0; b <= 100; b++)
{
for (int c = 0; c <= 200; c++)
{
if (a + b + c == 100 && 2 * a + b + 0.5 * c == 100)
{
x++;
Console.WriteLine("公鸡" + a + "母鸡" + b + "小鸡" + c);
}
}
}
}
Console.WriteLine("共有" + x + "种结果");
}
}
}