#include "maths.h" long double fabsl(long double n) { return n < 0 ? -n : n; }