#include <iostream>
#include <iomanip>

int main()
{
    std::cout << std::fixed << std::setprecision(6) << 42.0 << std::endl;
}