#include<bits/stdc++.h> using namespace std; int main(){ double d; cin>>d; if(d<0) d=-d; printf("%.2lf",d); return 0; }