#include <bits/stdc++.h>

using namespace std;

int main() {
    double N = 1.3333337;
    printf("%.6lf\n",N);

    //cout << fixed;
    //cout << setprecision(6) << N;

    return 0;
}
