Hello, I want to print out numbers in a sequence like this: for example, if the input is 3, the output should be 111 121 211 221 311 321. I found out that in order to do that I need to create a number of for loops equal to the input. So if the input is 3 I need 3 for loops, if 4 then i need 4. The problem is I tried doing it myself in many different ways and failed. I suppose I have to use recursion, but I am not sure how. Here is my code if the input was to be 4, so you have an idea of what I want to achieve.