#include<bits/stdc++.h> using namespace std; int main() { double a; cin >> a; if (a>=0){ cout<<a; }else{ cout << -a;} return 0; }