public static void Main()
Console.Write("What is your favorite store? ");
Console.Write("How many brothers do you have? ");
b = Convert.ToInt32(Console.ReadLine());
Console.Write("How many sisters do you have? ");
s = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("==============================================================================================");
Console.WriteLine("My favorite store is {0}.", fs);
Console.WriteLine("I have {0} brother(s), {1} sister(s) and with me, that makes it a total of {2} sibling in our household.", b , s , ttl);
Console.WriteLine("==============================================================================================");