Correction Exercice N°3
def absolue(x):
if x<0:
x=-x
return x
x=int(input("donner un entier "))
print(absolue(x))