using System;
public class Program
{
public static void Main()
double x= 130;
int g= 2010;
while(x>10)
x= 0.9*x;
g++;
}
Console.WriteLine(g);