What is the problem in this programm :
"a = print(input("entrez votre note"))
b = print(input("entrez votre note"))
c = print(input("entrez votre note"))
d = print(input("entrez votre note"))
e = print(input("entrez votre note"))
if (a+b+c+d+e)/5<10:
print("Redouble ! ")
if (a+b+c+d+e)/5>=10 and (a+b+c+d+e)/5<12:
print("Passable ")
if (a+b+c+d+e)/5>=12 and (a+b+c+d+e)/5<14:
print("Assez bien ")
if (a+b+c+d+e)/5>=14 and (a+b+c+d+e)/5<16:
print("Bien ")
if (a+b+c+d+e)/5>=16 and (a+b+c+d+e)/5<18:
print("Très bien ")
if (a+b+c+d+e)/5>=18:
print("Excellent ")"