# Paste your multiline text here as a single string
input_text = """
"""
# Text to append
text_to_append = "||||0||||"
# Transform each line and preserve the original format
transformed_lines = [f'"{line}{text_to_append}"' for line in input_text.strip().split("\n")]
# Print the transformed lines as a comma-separated string
print(", ".join(transformed_lines))