﻿from math import *

def Seuil(S):
    n=0
    q=1000
    while q>S:
        q=sqrt(q)+q/(n+3)
        n=n+1
    return n

