#include <iostream>
#include <iomanip>

int main()
{
    std::cout << std::fixed << std::setprecision(2) << 3525.3456456664;
}