public static void Main()
Console.WriteLine("How many cows?");
int cows = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many goats?");
int goats = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many sheep?");
int sheeps = Convert.ToInt32(Console.ReadLine());
int totalTruck = (cow*cows)+(goat*goats)+(sheep*sheeps);
Console.WriteLine("Its too heavy! " +totalTruck +" is way over the 10000 lbs weight limit!");
Console.WriteLine("All good! Total load weighs " +totalTruck +" pounds out of 10000 possible.");