public static void Main()
Console.WriteLine("Welcome to Weight Checker");
Console.WriteLine("Enter number of Goats: ");
int Goat = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter number of Cows: ");
int Cow = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter number of Sheeps: ");
int Sheep = Convert.ToInt32(Console.ReadLine());
int goatpounds = Goat * 150;
int cowpounds = Cow * 2000;
int sheeppounds = Sheep * 225;
int totalpound = goatpounds + cowpounds + sheeppounds;
int extrapound = totalpound-10000;
Console.WriteLine("The total haul weight is: " + totalpound + "\n");
Console.WriteLine("Sorry, but there's " + extrapound + " extra pounds over the 10000 pound weight limit\n");
Console.WriteLine("The Truck cannot haul it");
Console.WriteLine("The total haul weight is: " + totalpound + "\n");
Console.WriteLine("The Truck can haul it");