--> Python ∼ Conditionnelles a = 12 b = 2*a - 11 if a > b: a = a-b else: a = a*b print a print b