This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/Unreal/foo.py
2023-07-16 13:23:25 +00:00

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))