''' Module beanery -- defines three functions associated with jelly bean count manipulation Buddies (if any): ''' import math def volume( a, b ) : ''' Returns the volume of jelly bean with length a and height b according the problem description ''' pass def count( s, j , f ) : ''' Returns the integer number of beans of volume s that can fit a jar wth volume j given the loading capacity is f according to the problem description ''' pass def guess( a, b, j ) : ''' Returns the number of number jelly beans with length a and height b that can fit in a jar with volume j, where the jar loading factor is 69.8% (i.e., 0.698) ''' pass