public static void Main()
Console.Write("How many cars do you want? ");
c = Convert.ToInt32(Console.ReadLine());
Console.Write("How many trucks do you want? ");
t = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("+++++++++++++++++++++++++++++++++++++++++++++");
Console.WriteLine("The total number of cars you wanted was " + c + ".");
Console.WriteLine("The total number of trucks you wanted was " + t + ".");
Console.WriteLine("The total number of cars and trucks you wanted was " + total + ".");
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++");