/*
		
*/

#include	<stdlib.h>

int	sign(int i)
{
	return ((i==0) ? 0 : i/abs(i));
}
