#include<iostream> #include<iomanip> using namespace std; int main(){ float n; cin >> n; if (n>=0){ cout << fixed << setprecision(2) << n; } else { cout << fixed << setprecision(2) << n; } return 0; }
exit code: 0, checker exit code: 0