int dectoHex(int dec)
{
int hex = 0;
int i,j;
i=dec>>4;
j=dec&0xf;
hex=i*16+j;
return hex;
}