def G(x): y=-200/9*x+200/3 return y x=float(input("x =")) if G(x)>=0: print("Souhait") else: print("Rejet")