#include #include int math·abs(int a) { if(a < 0) return -a; return a; } long math·labs(long a) { if(a < 0) return -a; return a; }