using System;
public class Program
{
public static void Main()
double a = 0;
for (int i = 0; i < 90; i++)
a += 0.01;
}
Console.WriteLine(a);