/*Copyright ElohimTov LLC*/ /* //Name: ElohimTov Solve Code - Hello World - C# Solution //Problem: HackerRank - 30 Days of Code - Hello World //Current File: ElohimTovSolve_HelloWorld.(cs).txt //Compile-able File: ElohimTovSolve_HelloWorld.cs //Date: Created 02/9/2019; 12/31/2021. //Tale: ElohimTov Solve's Solution to HackerRank.com's // Hello World problem in C# programming language. // Problem link at https://elohimtov.com/elohimtov.info. */ using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { // Declare a variable named 'inputString' to hold our input. String inputString; // Read a full line of input from stdin (cin) and save it to our variable, inputString. inputString = Console.ReadLine(); // Print a string literal saying "Hello, World." to stdout using cout. Console.WriteLine("Hello, World."); // TODO: Write a line of code here that prints the contents of inputString to stdout. Console.WriteLine(inputString); } } /*Copyright ElohimTov LLC*/