#include<bits/stdc++.h>
using namespace std;
int main()
{
    double v;
    cin>>v;
    cout<<fixed<<setprecision(2)<<abs(v);
    return 0;
}