public static void Main()
string fday, fcar, fn, ln, age, yy, st, live, fs, ff, fc, bc, rc;
Console.Write("What is my favorite day of the week? ");
fday = Console.ReadLine();
Console.Write("What is my favorite car? ");
fcar = Console.ReadLine();
Console.Write("What is my first name? ");
Console.Write("What is my last name? ");
Console.Write("How old am I? ");
age = Console.ReadLine();
Console.Write("What year was I born? ");
Console.Write("What state do I live in? ");
Console.Write("Where do I want to live when I am grown? ");
live = Console.ReadLine();
Console.Write("What is my favorite season? ");
Console.Write("What is my favorite food? ");
Console.Write("What is my favorite color? ");
Console.Write("How many people do I know have black cars? ");
Console.Write("How many people do I know have red cars? ");
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
Console.WriteLine("My name is " + fn + " " + ln + " and I am " + age + " years old and I was born in the state of " + st + " in the year " + yy + ".");
Console.WriteLine("My favorite color is " + fc + " and my favorite food is " + ff + ".");
Console.WriteLine("My favorite season is " + fs + " and my favorite food is " + ff + ".");
Console.WriteLine("My favorite day of the week is " + fday + ".");
Console.WriteLine("My dream car is " + fcar + " and I love the color " + fc + ".");
Console.WriteLine("I would like to live in " + st + " when I grow up.");
Console.WriteLine(bc + " amount of people I know own black cars.");
Console.WriteLine(rc + " amount of people I know own red cars.");
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");