#!/usr/bin/python
# choose this day whom you will serve (Joshua 24:15)
class God(object):
def serve(self):
print 'serve God'
class Money(object):
def serve(self):
print 'serve Money'
class Andrew(Money, God):
pass
if __name__ == "__main__":
andrew = Andrew()
andrew.serve()