#include <iostream>
#include <math.h>
using namespace std;

int main() {
	double d = pow(2.0,50.0) / pow(2.0,60.0);
	cout << d << endl;
	cout << d * 1024.0 << endl;
	// your code goes here
	return 0;
}