N = input() N = int(N) for i in range(1, 10): # 요솟값이 1~9인 리스트 print("{0} * {1} = {2}".format(N, i, N*i))