#include <iostream>
#include <cmath>
using namespace std;

int main() {
    double num = sqrt(2);
    cout << fixed;
    cout.precision(52);
    cout << num << endl;
}

//https://pt.stackoverflow.com/q/105206/101