Just run this code it will work.. I am not sure about how much charater there will be in your variable, so I am taking length as 16 for new character variable.
data two; set one; acct_nbr_2 = put (acct_nbr_1,$16.); run;
thanks, sudhir