#include <iostream>

using namespace std;

int main() 
{
	volatile double x = 9223372036854775807.;
	cout << sizeof (double) << endl << fixed << x << endl;
	return 0;
}