using namespace std; int abs(int x) { int temp=x; cin >> x; if(x<0) temp=x*-1; return temp; }
int main() { int x; cin >> x; cout << abs(x) << endl; return 0; }