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