a = float(input("a : ")) b = float(input("b : ")) c = float(input("c : ")) moyenne = (a + b + c)/3 print ("moyenne = ", moyenne)