#include <iostream>
#include <cmath>
using namespace std;
int main() {
cout << atanh(0.78) << "\n";
cout << atanh(0.5) << "\n";
cout << atanh(1) << "\n";
return 0;
}