#include<iostream> using namespace std; int abs(int x){return x<0?-x:x;} int main() { int x; cin>>x; x=abs(x); cout<<x; return 0; }