#include "types.h" static inline int abs(int n) { return (n < 0) ? -n : n; } static inline i64 i64abs(i64 n) { return (n < 0) ? -n : n; }