#include #undef llabs long long int llabs(long long int j) { return (j >= 0) ? j : -j; }