#include float hypotf(float a, float b) { return sqrtf(a*a + b*b); }