# This is such a hip CGI script!

import cgi

def spam(c, (d, e)):
    x = c + d
    y = c * d
    foo(x, y)

def foo(a, b, bar=1):
    eggs(a, b + bar)

def eggs(f, g):
    h = f + g
    i = f - g
    return h / i

print 'Content-Type: text/html'
print
print 'The answer to life, the universe, and everything is:'
print spam(1, (2, 3))
