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