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