Skip to content

Instantly share code, notes, and snippets.

View saarthaksangam's full-sized avatar
🏠
Working from home

Saarthak Sangamnerkar saarthaksangam

🏠
Working from home
View GitHub Profile
@saarthaksangam
saarthaksangam / Day_0_Hello_World.py
Created April 25, 2020 05:43
Day 0 of "30 Days of Code" on Hackerrank
# 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)