public static void Main()
Console.WriteLine("Please enter your car choice or 0 to end. \n cars: 1 = luxury, 2 = commercial, 3 = sedan");
input = int.Parse(Console.ReadLine());
if (input == 0 || input == null)
Console.WriteLine("total luxury: " + totalluxury + "\n" + "total commercial: " + totalcommercial + "\n" + "total sedan: " + totalsedan);