#include #include #include #include #include #include #include #include #include using namespace std; void func(long long &a, long long &b, string s){ } int main(){ int n; cin >> n; long long a = 0; long long b = 0; for(int i=0; i> s; long long sgn = 1; if(s[0] == '-'){ s = s.substr(1); sgn = -1; } //cerr << s << endl; auto pos = s.find('.'); { string sub = s.substr(0, pos); //cerr << sub << endl; stringstream ss; ss << sub; long long x; ss >> x; a += sgn * x; } if(pos != string::npos){ string sub = s.substr(pos+1); for(int i=0; i<10; i++){ sub += '0'; } //cerr << sub.substr(0,10) << endl; stringstream ss; ss << sub.substr(0,10); long long x; ss >> x; b += sgn * x; } a += b/10000000000LL; b %= 10000000000LL; } stringstream ss; ss << b; string bs; ss >> bs; for(int i=0; i<10; i++){ bs += '0'; } cout << a << '.' << bs.substr(0,10) << endl; return 0; }