public static void Main()
int a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, tt, tc, tsuv, tia;
Console.Write("How many Mustangs do you want to order? ");
a = Convert.ToInt32(Console.ReadLine());
Console.Write("How many F-150 Raptors do you want to order? ");
b = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Escapes do you want to order? ");
c = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Broncos do you want to order? ");
d = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Rangers do you want to order? ");
e = Convert.ToInt32(Console.ReadLine()); ;
Console.Write("How many Ford Couriers do you want to order? ");
f = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford D-series do you want to order? ");
g = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Explorer Sport Tracs do you want to order? ");
h = Convert.ToInt32(Console.ReadLine());
Console.Write("How many For F-Series do you want to order? ");
i = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Freighter do you want to order? ");
j = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford H-Series do you want to order? ");
k = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Jeeps do you want to order? ");
l = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford L-Series do you want to order? ");
m = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford LCF do you want to order? ");
n = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Lobo do you want to order? ");
o = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Super Dutys do you want to order? ");
p = Convert.ToInt32(Console.ReadLine());
Console.Write("How many S-Maxs do you want to order? ");
q = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Galaxys do you want to order? ");
r = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Pumas do you want to order? ");
s = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Spectrons do you want to order? ");
t = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Supervans do you want to order? ");
u = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Ecosports do you want to order? ");
v = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Edges do you want to order? ");
w = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Endeavor do you want to order? ");
x = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Escape do you want to order? ");
y = Convert.ToInt32(Console.ReadLine());
Console.Write("How many Ford Cargos do you want to order? ");
z = Convert.ToInt32(Console.ReadLine());
tt = b + e + p + z + f + g + h + i + j + k + l + m + n + o;
tsuv = d + v + w + x + y;
tia= a + b + c + d + e + p + q + r + s + v + w + x + y + z + f + g + h + i + j + k + l + m + n + o;
Console.WriteLine("===============================================================");
Console.WriteLine("You ordered:");
Console.WriteLine("{0} Mustangs (Car)", a);
Console.WriteLine("{0} F-150 Raptor (Truck)", b);
Console.WriteLine("{0} Escape (Car)", c);
Console.WriteLine("{0} Bronco (SUV)", d);
Console.WriteLine("{0} Ranger (Truck)", e);
Console.WriteLine("{0} Super Duty (Truck)", p);
Console.WriteLine("{0} S-Max (Car)", q);
Console.WriteLine("{0} Galaxy (Car)", r);
Console.WriteLine("{0} Puma (Car)", s);
Console.WriteLine("{0} Ford Spectron (Van)", t);
Console.WriteLine("{0} Ford SuperVan (Van)", u);
Console.WriteLine("{0} Ford Ecosport (SUV)", v);
Console.WriteLine("{0} Ford Edge (SUV)", w);
Console.WriteLine("{0} Ford Endeavour (SUV)", x);
Console.WriteLine("{0} Ford Escape (SUV)", y);
Console.WriteLine("{0} Ford Cargo (Truck)", z);
Console.WriteLine("{0} Ford Courier (Truck)", f);
Console.WriteLine("{0} Ford D-Series (Truck)", g);
Console.WriteLine("{0} Ford Explorer Sport Trac (Truck)", h);
Console.WriteLine("{0} Ford F-Series (Truck)", i);
Console.WriteLine("{0} Ford Freighter (Truck)", j);
Console.WriteLine("{0} Ford H-Series (Truck)", k);
Console.WriteLine("{0} Ford Jeep (Truck)", l);
Console.WriteLine("{0} Ford L-Series (Truck)", m);
Console.WriteLine("{0} Ford LCF (Truck)", n);
Console.WriteLine("{0} Ford Lobo (Truck)", o);
Console.WriteLine("The total number of trucks ordered was {0}", tt);
Console.WriteLine("The total number of cars ordered was {0}", tc);
Console.WriteLine("The total number of SUVs ordered was {0}", tsuv);
Console.WriteLine("The total number of trucks, cars and SUVs ordered was {0}", tia);
Console.WriteLine("===============================================================");