public static void Main()
Console.WriteLine("How many Goats would you like to load?");
totalWeight = totalWeight + (Convert.ToInt32(Console.ReadLine())*Goat);
Console.WriteLine("How many Cows would you like to load?");
totalWeight = totalWeight + (Convert.ToInt32(Console.ReadLine())*Cow);
Console.WriteLine("How many Sheep would you like to load?");
totalWeight = totalWeight + (Convert.ToInt32(Console.ReadLine())*Sheep);
Console.WriteLine("your total weight is: " + totalWeight);
if(totalWeight < maxWeight){
Console.WriteLine("Your truck can haul your total weight");
Console.WriteLine("Your truck can not haul your total weight");