ch01_ex127_prof.py

Created by manuel-2de-indice2019

Created on October 09, 2019

112 Bytes


def loto(A):
    S=1
    n=1
    while S<A:
        S=S+2*n+1
        n=n+1
    return(n)