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
lines = []
for _ in range(5):
lines.append(input())
lines_to_str = ", ".join(lines)
print(lines_to_str)
Comments
Leave a comment