#include <stdlib.h>
#undef labs

long int labs(long int j)
{
	return (j >= 0) ? j : -j;
}