public static void Main()
string firstName, lastName;
Console.Write("What is the realtor's first name? ");
firstName = Console.ReadLine();
Console.Write("What is the realtor's last name? ");
lastName = Console.ReadLine();
int totalHouses, victorian, artDeco, capeCod, dutchColonial;
dutchColonial = capeCod + 5;
totalHouses = capeCod + artDeco + victorian + dutchColonial;
Console.WriteLine("+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");
Console.WriteLine("The realtor's first and last name is " +firstName+ " " +lastName+ ".");
Console.WriteLine("There a total of " +totalHouses+ " houses.");
Console.WriteLine("There are a total of " +victorian+ " Victorian houses, a total of " +artDeco+ " Art-Deco houses,");
Console.WriteLine("a total of " +capeCod+ " Cape Cod houses and a total of " +dutchColonial+ " Dutch Colonial houses.");
Console.WriteLine("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++");