# Background (Don't worry, this won't be in the final draft.)
Mark: Can you make stairs?
Cream: You mean climb them?
Mark: No, I legit mean make.
Cream: Uhh, no.
Mark: I can help you with that.
Cream: Did I say I want to-
Mark: Let's use some code for it!
Cream : *Oh great, your coding stuff.* Listen, Mark. I don't have time for-
Mark: C'mon, it'll be fun!
Cream: Like I said before, I don't want to program.
Mark: Aww, but why?
Cream: I don't want to. That simple! Now do whatever you do and I'll do whatever I do.
Mark: ...fine.
<sup>*Italicized text* is silently talking, mumbled words, or thoughts in head.</sup>
# Challenge
- Make a program that takes input of an integer that's $n > 1$ and print out a staircase using a specific character for stair basing (hashes (`#`) for demonstration; you can use spaces, but not tabs), slashes (`/`), and underscores (`_`).
- The basis of the staircase is having the hashes as to act like the stair supporters, in other words, bricks. The bottom stair starts with a slash then as we go higher, an underscore at the spot right next and above the
- Shortest program in each language wins!
# Test Cases
```none
n = 2
_/
/##
n = 3
_/
_/##
/####
n = 6
_/
_/##
_/####
_/######
_/########
/##########
```