Consider the following function:
What will be printed when dosomething(5) is called?
(Either write a sequence of numbers, or write "infinite
recursion".)
12345
The print command will be exectued when the recursive call reaches the base case, and then each time coming back back.