def main(): n, a = map(int, input().split()) print(*(int(x)+a for x in map(int, input().split()))) if __name__ == '__main__': main()