'''
Created on Jun 17, 2013

@author: Jared

Uses a random object to produce the heights of 40 people, distrubuted
using the bell curve.

Python translation of Arup's Java code
'''

from random import gauss

def  main():
        # Note: We assume an average height of 5' 7" with a standard deviation of 6".
        for i in range (40):
            height = int(gauss(67, 6))
            print(str(height // 12) + " ft. " + str(height % 12) + " in.")  # use // for integer division
    
# runs main module on startup
if __name__ == "__main__":
    main()
