public static void Main()
Console.WriteLine("Въведете внесената сума");
double depositSum = double.Parse(Console.ReadLine());
Console.WriteLine("Период на депозита");
int depositPeriod = int.Parse(Console.ReadLine());
Console.WriteLine("Въведете годишен лихвен процент");
double annualInterestRate = double.Parse(Console.ReadLine());
double interestRate = annualInterestRate / 100;
double monthlyInterest = depositSum = interestRate / 12;
double totalSum = depositSum + depositPeriod + monthlyInterest;
Console.WriteLine("Вашата сума е" + "{0:F2}" , totalSum);