#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;

int main() {
	cout << setprecision(2) << fixed;
	cout << showpos << 1.0 << " " << -2 << " " << sqrt(3.0) << endl;
}