{-# LANGUAGE ScopedTypeVariables #-} module Main where import Data.List import Control.Monad readLine :: Read a => IO [a] readLine = map read . words <$> getLine main :: IO () main = do [n, h] :: [Int] <- readLine t <- readLine putStrLn $ unwords $ map (show . (+ h)) t