#include using namespace std; using Int = long long; template inline bool setmin(T &A, T B){ if (A > B){ A = B; return true; } else { return false; } } template inline bool setmax(T &A, T B){ if (A < B){ A = B; return true; } else { return false; } } #define REP(x, y) for (int x = 0; x < int(y); ++x) #define rep(x, y, z) for (int x = int(y); x < int(z); ++x) #define PER(x, y) for (int x = int(y) - 1; x >= 0; --x) #define per(x, y, z) for (int x = int(z) - 1; x >= int(y); --x) void solve(){ int N; cin >> N; vector C(N); REP(i, N){ cin >> C[i]; } sort(C.begin(), C.end()); int ans = 0; if (C[0] < 0 && C[N - 1] < 0){ ans += abs(C[0]) * 2; } else if (C[0] > 0 && C[N - 1] > 0){ ans += C[N - 1] * 2; } else { ans += abs(C[0]) * 2; ans += abs(C[N - 1]) * 2; } cout << ans << '\n'; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int t = 1; // cin >> t; while (t--){ solve(); } }