string num2str( int _n){
string temp;
do{
temp=(char)(_n%10+'0')+temp;
_n=_n/10;
}while(_n!=0);
return temp;
}
string num2str( int _n){
string temp;
do{
temp=(char)(_n%10+'0')+temp;
_n=_n/10;
}while(_n!=0);
return temp;
}