#!/usr/bin/env python
import sys
import os
import json

sys.path.insert(0, os.path.abspath(os.getcwd()))

from txctools.reports import HotspotReport

report = HotspotReport(sys.stdin)
report.process()
print report.deliverTextResults()