c3bacdp.py

Created by manuel-eleve-tle-techno-indice2020

Created on May 11, 2020

154 Bytes


def safran():

    x=1

    p=50

    c=2*x**2-23*x+90+36/x

    while p<=c:

        x=x+0.1

        c=2*x**2-23*x+90+36/x

    return(x)