13 lines
229 B
Python
13 lines
229 B
Python
def prettify(val: str) -> str:
|
|
return val.removeprefix("<!--").removesuffix("-->").strip()
|
|
|
|
lines = []
|
|
|
|
while True:
|
|
try:
|
|
lines.append(prettify(input()))
|
|
except EOFError:
|
|
break
|
|
|
|
print("\n".join(lines))
|