#include<bits/stdc++.h>
using namespace std;
int main()
{
    double n,h;
    cin>>n;
    if(n<0) {
    	h=0-n
    	printf("%.2f",h);
	}
    else {
    	printf("%.2f",n);
	}
    return 0;
}
/**************************************************************
	Problem: 1676
	User: xiaojingxuan
	Language: C++
	Result: Compile Error
****************************************************************/