#include <bits/stdc++.h> using namespace std; int main() { int n,i; long long z=0; cin>>n; i=n; while(n--) { int ge; cin>>ge; z+=ge; } cout<<fixed<<setprecision(4)<<(double)z/i; return 0; }