Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. # Read a full line of input from stdin and save it to our dynamically typed variable, input_string.
  2. input_string = input()
  3.  
  4. # Print a string literal saying "Hello, World." to stdout.
  5. print('Hello, World.')
  6.  
  7. # TODO: Write a line of code here that prints the contents of input_string to stdout.
  8. print(input_string)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement