def Triangle(c,h): S=c*h/2 return S côté=float(input("Côté =")) hauteur=float(input("Hauteur =")) aire=Triangle(côté,hauteur) print("Aire =",aire)