Réponse :
x=int(input("Choisir un nombre entier"))
if x%5=0:
<Slash>print("Nombre divisible par 5 :")
<Slash>print(x, "/ 5 = ", x/5)
else:
<Slash>print("Nombre non divisible par 5")
_________________________________
a=float(input("Choisir un nombre a"))
b=float(input("Choisir un nombre b"))
if a<b:
<Slash>print(a, "est le plus grand")
else:
<Slash>print(b, "est le plus grand)
print("La somme de a et de b est :", a+b)
print("Le produit de a et de b est :", a*b)