#輸入
n = int(input())
#輸出for i in range(1, n + 1): for _ in range(0, i - 1): print("*", end = "") print("*")