#include <iostream>
using namespace std;

int main() {
	// your code goes here
	
	auto foo = int{ 2.5 };
	auto bar = int(2.5);
	
	std::cout << foo <<'\n' << bar << std::endl;
	
	return 0;
}