def solution(x, n): return [x*(i+1) for i in range(n)] # lambda식 적용 solution = lambda x, n:[x*(i+1) for i in range(n)]