Consider the following function: What will be printed when dosomething(5) is called?
(Either write a sequence of numbers, or write "infinite recursion".)

54321

The print command will be exectued before the recursive call, each time until it reaches the base case.