'''
Created on Feb 24, 2016

@author: Susan
'''

def processScores(scores):
    #Part 1: print total number of scores and average score
    print "Calculate total number of scores and average score"
    

    # How many are there of each grade?
    # Print out how many for grades 70 and up
 

    # How do we print all 90 grades on a line
    # all 89 grades on a line, etc. 


if __name__ == '__main__':
    f = open("exam1scores.txt")
    scores = f.read()
    processScores(scores.split())
