We use `input` in our program for use with python3 - but we can make this compatible with python2 by doing this first. ``` # Fix Python 2.x. try: input = raw_input except NameError: pass ```