nbNotes = int(input()) sommeNotes = 0 for loop in range(nbNotes): note = int(input()) sommeNotes = sommeNotes + note print(sommeNotes / nbNotes)