/*Copyright ElohimTov LLC*/ /* //Name: ElohimTov Solve Code - Hello World - Java Solution //Problem: HackerRank - 30 Days of Code - Hello World //Current File: ElohimTovSolve_HelloWorld.(java).txt //Compile-able File: ElohimTovSolve_HelloWorld.java //Date: Created 02/9/2019; 12/31/2021. //Tale: ElohimTov Solve's Solution to HackerRank.com's // Hello World problem in Java programming language. // Problem link at https://elohimtov.com/elohimtov.info. */ import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { // Create a Scanner object to read input from stdin. Scanner scan = new Scanner(System.in); // Read a full line of input from stdin and save it to our variable, inputString. String inputString = scan.nextLine(); // Close the scanner object, because we've finished reading // all of the input from stdin needed for this challenge. scan.close(); // Print a string literal saying "Hello, World." to stdout. System.out.println("Hello, World."); // TODO: Write a line of code here that prints the contents of inputString to stdout. System.out.println(inputString); } } /*Copyright ElohimTov LLC*/