N, A, B = map(int, input().split()) print(*[A * B ** i for i in range(N)], sep = "\n")