I will outline the steps for you, but you need to write the code if you are going to lean anything...
1) Read in the number and save it as a "string" (in your example, 16345)
2) Determine the length of the string and save that as an integer variable (in your example, 5)
3) Create another string to hold the reversed information
4) Set up a "For" loop that cycles the number of times as the string is long. Have it start with the length of the original string (in your example it would start with 5) and have it count down to 1
5) In the "for" loop, take the last character of the original string and assign it to the reversed string
- assign original string (character 5) to reversed string
- subtract one from the count (making it 4)
- assign original string (character 4) to reversed string (+ existing reverse string)
- subtract one from the count (making it 3)
- assign original string (character 3) to reversed string (+ existing reverse string)...
and continue until you have copied the entire string
6) Output the new reversed string (54361)