Simple input and output in python interactive
>>> message = "hello world"
>>> print(message)
hello world
>>> message = raw_input()
(I types...) HELLO WORLD
>>> print(message)
HELLO WORLD
>>>
>>> message = "hello world"
>>> print(message)
hello world
>>> message = raw_input()
(I types...) HELLO WORLD
>>> print(message)
HELLO WORLD
>>>