#include<bits/stdc++.h> using namespace std; int main() { double a,b,s; cin>>a; for(int i=1;i<=a;i++){ cin>>b; s+=b; } cout<<s*1.0/a; return 0; }