Accept two words as input and print the two words after adding a space between them.
Input
Two lines, each containing one word.
Output
A single line holding the two words separated by exactly one space.
Example
Input:
one
two
Output:
one two
Write a complete program: read the input with input() and print the result with print().
Input
one
two
Output
one two