#include using namespace std; // -------------------------------------------------------- // Reference: https://boostjp.github.io/tips/multiprec-float.html #include typedef boost::multiprecision::cpp_dec_float_50 f50; // 10進数の桁数が50の浮動小数点数型 int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(10); int N; cin >> N; f50 ans = 0.0; for (int i = 0; i < N; i++) { f50 x; cin >> x; ans += x; } cout << ans << '\n'; return 0; } // Verify: https://yukicoder.me/problems/no/81