#!/usr/bin/python
from surely.surely import SurelyParser
from sys import argv, exit

if len(argv) != 2:
    exit('usage: %s filename.surely (will write XML to stdout)' % (argv[0],))

print str(SurelyParser(file(argv[1])).parse())
