Print right-aligned staircase with # characters, n steps.
Write a complete program: read the input with input() and print the result with print().
input()
print()
# n=4 # ## ### ####
Input
4
Output
# ## ### ####