#include <iostream>

int main() 
{
	int foo;
	double bar;
	std::cin >> foo;
	std::cin >> bar;
	std::cout << foo << std::endl;
	std::cout << bar;
}