#13136: d579 解題報告


stanleyyu (DYU18 D85)


#include <iostream>
#include <iomanip>
using namespace std ;
int main () {
	double n ;
	while (cin >> n) {
		if (n>0) {
			cout << "|" << fixed << setprecision(4) << n << "|=" << fixed << setprecision(4) << n << endl ; 
		}
		else {
			cout << "|" << fixed << setprecision(4) << n << "|=" << fixed << setprecision(4) << -n << endl ; 
		}
	}
}