N = input() a = int(N) while a > 0: print(N * a) a -= 1