for _ in range(int(input())): d,a = map(int,input().split()) ls = list(map(int,input().split())) lz = [] for i in ls: lz.append(i//a) print(*lz)