% Order of Operation Example1
% Written by Michael Haggerty 
% 9/5/2007

radius = 5;
height = 10;
surfaceArea = 2*pi*radius^2 + 2*pi*radius*height

