#include <iostream>
#include <iomanip>

int main(){
	
	double a=4000000000;
	int b=a;
	
	std::cout << std::fixed << a << '\n'
	     << b << std::endl;
     }