#include <iostream>
#include <cmath>

int main() {
    double x = 1e-10;
    std::cout << "expm1(" << x << ") = " << expm1(x) << std::endl;
    return 0;
}