Kari,
The objective function (score) is S=7a+12b
The constraint equations are:
a+b>=8
10a+8b<=80
a>0
b>0
With a simple system like this if you plot the constraint equations a vs b they define a triangular region where the objective function is valid. The max S occurs at one of the vertexes of the triangle http://www.wolframalpha.com/input/?i=plot%28a%2Bb%3E8%2C10a%2B8b%3C80%2Ca%3E0%2Cb%3E0%29 you can see a plot here.
a=0, b=10 gives S=120 which is the maximum score subject to the constraints.
Hope this helps
Jim