﻿from math import *

def fseconde(x):
    y=(2+x)*exp(x)-4
    return y

def Inflexion():
    x=-2
    while fseconde(x)<=0:
        x=x+0.01
    x1=round(x-0.01,2)
    x2=round(x,2)
    return x1,x2





