#include double hypot(double x, double y) { return sqrt(x*x + y*y); }