#include #include int main(){ int x; std::cin >> x; std::cout << sqrt(5*x+9); }
import mathx = float(input())print(math.sqrt(5*x+9))