#include <iostream>
#include <iomanip>

int main() {
	// your code goes here
	std::cout << std::fixed << std::setprecision(1) << 5*1.0;
	return 0;
}