#!/usr/bin/env python

from cooker import Cooker

def main():
    # Fetch input from the cli
    problem = 'SIMGRAPH'
    contest = 'APRIL12'
    path = '.'


    c = Cooker()
    c.cook(problem, path=path)


if __name__ == "__main__":
    main()
