#include int abs(int n) { if (n < 0) return (-n); else return (n); } long labs(long n) { if (n < 0) return (-n); else return (n); }