#!/usr/bin/python
# -*- coding: utf-8 -*-

def bob():
	print "Bob is great!"

def notBob():
	print "Bob is a fink!"

def liveBob():
	print "Long live Bob!"
 
def allBob():
	bob()
	notBob()
	liveBob()
