604298411069fd7f6c0a678f09928c24c38ba004
8 from StringIO
import StringIO
, BytesIO
10 from io
import StringIO
, BytesIO
15 from HTMLParser
import HTMLParser
17 from html
.parser
import HTMLParser
19 # raw_input and map functiion behaviour
20 if sys
.version
[0] == "3":
22 lmap
= lambda f
, a
: list(map(f
, a
))
24 lmap
= lambda f
, a
: map(f
, a
)