First you get the input:
Text = input()
This is how we put the input in to a string called Text
Then, we print out the result seperated in a space, which is known for putting a comma in between:
print(Text, Text)
And now you solved the question!
The whole thing:
Text = input()
print(Text, Text)
If you have any questions, please reply to this forum.