public static void Main()
string statement = "It will take you ";
Console.WriteLine("What is your monthly financial savings amount?");
int harbi = int.Parse(Console.ReadLine());
Console.WriteLine("How much do you hope to save?");
int hsaving = int.Parse(Console.ReadLine());
Console.WriteLine(statement + hsaving + " months to save the hoped amount of money.");