public static void Main()
Console.WriteLine("Welcome to Freedom 55 Investments");
Console.WriteLine("Principal Invested ($):");
invest = Math.Round( Convert.ToDouble(Console.ReadLine()),2);
Console.WriteLine("You can't type that!!");
Console.WriteLine("Your number is too small!!");
Console.WriteLine("Interest Rate of Fund (%)");
rate = Convert.ToDouble(Console.ReadLine())/100;
Console.WriteLine("You can't type that!!");
Console.WriteLine("You can't type that!!");
Console.WriteLine("You can't type that!!");
Console.WriteLine("Term of Investment (years):");
years = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("You can't type that!!");
Console.WriteLine("You can't type that!!");
Console.WriteLine("{0,20}{1,20}{2,30}","Year","Interest","Balance");
Console.WriteLine(new String('-',80));
for(int count = 0; count < years; count++){
interests = Math.Round(invest * rate, 2);
Console.WriteLine("{0,20}{1,20:C2}{2,30:C2}",count+1,interests,invest);