#33038: c++ ans


yp11151144@yphs.tp.edu.tw (911-39陳中仁)

學校 : 臺北市私立延平高級中學
編號 : 197065
來源 : [203.72.178.3]
最後登入時間 :
2024-12-16 14:20:18

#include <bits/stdc++.h>

using namespace std;

int main() {
    int a;
    while( cin >> a) {
        if( a > 0) {
            cout << 2 * a - 1 << endl; 
        } else {
            cout << -2 * a << endl;
        }
    }
}