#include using namespace std; void solve() { int N; cin >> N; long double ans = 0.0; for (int i = 0; i < N; i++) { long double x; cin >> x; ans += x; } cout << fixed << setprecision(10) << ans << '\n'; } int main() { ios::sync_with_stdio(false); cin.tie(NULL); int t = 1; // cin >> t; while (t--) solve(); return 0; }