30 Day code challenge- python
Mar 7, 2021
Day 0 — Hello, World.
Task
To complete this challenge, you must save a line of input from stdin to a variable, print Hello, World. on a single line, and finally print the value of your variable on a second line.
Input Format
A single line of text denoting input string (the variable whose contents must be printed).
Output Format
Print Hello, World. on the first line, and the contents of input string on the second line.
Explanation
1st line: input_ variable get the input from the users in string format
2nd line: prints “Hello, World.”
3rd line: prints the string stored in input_ (i.e Welcome to 30 Days of Code!)
See you on day 1