def Main(): n,x=map(int,input().split()) a=list(map(int,input().split())) for i in range(n): print(a[i]+x,end=" ") print() Main()