Solution:
Viewing the problem in reverse, it is equivalent to show that we can use multiple n-staircases to make a single, larger n-staircase, because that larger n-staircase is made up of strictly smaller n-staircases, and is the example we need.
For the construction, we first attach two n-staircases of the same size together to make an n×(n+1) rectangle. Then, we arrange n(n+1) of these rectangles in a (n+1)×n grid, giving an n(n+1)×n(n+1) size square. Finally, we can use 2n(n+1) of these squares to create a larger n-staircase of n2(n+1)2 smaller staircases, so we are done.