#include <iostream>
#include <iomanip>

int main() {
	std::cout << std::fixed << std::setprecision(1);
	double num = 2.6534;
	std::cout << num;
}
