https://school.programmers.co.kr/learn/courses/30/lessons/12954
def solution(x, n): return [x * i for i in range(1, n + 1)]
x씩 증가를 위해 1~n까지의 i를 곱했다.