#include <iostream>
using namespace std;

int main() {
	double d = 3.1415926e-256;
	int * p = (int*)&d;
	
	cout << *p;
	
}