Alright I've got this problem mostly figured out. I'm supposed to take a string of digits and then reverse it. It works except for one thing. If the user inputs 31000, then it should output 13. Likewise, if the user inputs 00013, it should display 31000. However, I come out with 00013 and 31, respectively. how can I remove the leading zeros and keep it from automatically truncating that 00013 to 13?

