#include	<stdio.h>
#include	<stdlib.h>


char	 i2atmp[6];
char	*i2a(int num)
{	itoa(num,i2atmp,10);		return i2atmp;		}

