#include <iostream>
using namespace std;

int main () 
{
	float x1, x2;
	x1 = 1e-399;
	x2 = 1e-400;
	cout << endl;
	cout << x1 - x2 << endl;
	return 0;
}


