a = int(input()) for i in range(1,10): if(i == 9): print(a*i, end="") else: print(a*i, end=" ")