/*Copyright ElohimTov LLC*/ /* //Name: ElohimTov Solve Code - Hello World - C++ Solution //Problem: HackerRank - 30 Days of Code - Hello World //Current File: ElohimTovSolve_HelloWorld.(cpp).txt //Compile-able File: ElohimTovSolve_HelloWorld.cpp //Date: Created 10/24/2018; 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. */ #include #include #include #include #include using namespace std; int main() { /* Declare a variable named 'input_string' to hold our input. */ string input_string; /* Read a full line of input from stdin (cin) and save it to our variable, input_string. */ getline(cin, input_string); /* Print a string literal saying "Hello, World." to stdout using cout. */ cout << "Hello, World." << endl; /* TODO: Write a line of code here that prints the contents of input_string to stdout. */ cout << input_string << endl; return 0; } /*Copyright ElohimTov LLC*/