#include <iostream>
#include <iomanip>
#include <tlfloat/tlmath.hpp>
using namespace tlfloat;
Octuple machin() {
return 4 * (4 * atan(1 / Octuple(5)) - atan(1 / Octuple(239)));
}
int main(int argc, char **argv) {
std::cout << std::setprecision(70) << machin() << std::endl;
}