#
# ps1pr1.py - Problem Set 1, Problem 1
#
# Computes the integers 0 through 5 using exactly 4 fours.
#

zero = 4 + 4 - 4 - 4

# Complete the rest of the program below.




# test code below, do not modify!
if __name__ == '__main__':
    
    for x in ['zero', 'one', 'two', 'three', 'four', 'five']:
        if x in dir():
            print(x + ' = ', eval(x))

