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