#include double hypot(double x, double y) { return sqrt(x*x + y*y); } double cbrt(double x) { return pow(x, 1.0/3.0); }