﻿from math import *

def U(n):
    y=-sqrt(n**2+1)
    return y

def Seuil(S):
    n=0
    while U(n)>=S:
        n=n+1
    return n

