# Small program demonstrating functions

def sendMoney(amount):
    print "Send $%d to Bob" % amount

def main():
    print "Dear Mom"
    sendMoney( 100 )
    print "no, on second thought ",
    sendMoney( 1000)
    print "Thanks"

main()
