#include <iostream>
using namespace std;

int main() {
	long long x = 1LL << 59;
	cout.precision(5);
	cout << fixed << x << ' ' << (double) x << ' ' << (double) (x - 1) << endl;
}