Question #266217

Input



Five lines containing a string on each.



C


C#


Java


Python


Javascript


Output



A single line containing all the strings separated by a comma and a space.



C,·C#,·Java,·Python,·Javascript


Expert's answer

lines = []
for _ in range(5):
	lines.append(input())
lines_to_str = ", ".join(lines)
print(lines_to_str)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

LATEST TUTORIALS
APPROVED BY CLIENTS