cf/mirror

Simple XML

CF
125B1000· newbie2s256 MB⌨ stdin/stdout

Examples

Sample 1of 2
Input
<a><b><c></c></b></a>
Output
<a>
<b>
<c>
</c>
</b>
</a>
Sample 2of 2
Input
<a><b></b><d><c></c></d></a>
Output
<a>
<b>
</b>
<d>
<c>
</c>
</d>
</a>
125B.cpp
loading editor…
Ln 11·137 BGNU C++20 (64)