a, b = map(int, input().split()) num = 1 while(b-a > 0): print(b) b -= a num += 1 print(num)