Created
April 25, 2020 05:43
-
-
Save saarthaksangam/8abcf9e267a470dfd9a9210a6a77c9b3 to your computer and use it in GitHub Desktop.
Day 0 of "30 Days of Code" on Hackerrank
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Read a full line of input from stdin and save it to our dynamically typed variable, input_string. | |
input_string = input() | |
# Print a string literal saying "Hello, World." to stdout. | |
print('Hello, World.') | |
# TODO: Write a line of code here that prints the contents of input_string to stdout. | |
print(input_string) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment