/*Copyright ElohimTov LLC*/ /* //Name: ElohimTov Solve Code - Hello World - Swift Solution //Problem: HackerRank - 30 Days of Code - Hello World //Current File: ElohimTovSolve_HelloWorld.(swift).txt //Compile-able File: ElohimTovSolve_HelloWorld.swift //Date: Created 2/9/2019; 12/31/2021. //Tale: ElohimTov Solve's Solution to HackerRank.com's // Hello World problem in Swift programming language. // Problem link at https://elohimtov.com/elohimtov.info. */ /* get a line of input from stdin and save it to our variable */ let inputString = readLine()! /* Your first line of output goes here */ print("Hello, World.") /* Write the second line of output */ print(inputString) /*Copyright ElohimTov LLC*/