#! /usr/bin/python
# Example 8.31

def foo():
    return 2, 3

i, j = foo()
print i
print j
