public static void Main()
Console.WriteLine("How many cars do you want? ");
c = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many trucks do you want? ");
t = Convert.ToInt32(Console.ReadLine());
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 vehicles you wanted was" +total+ "." );