/* 

   sphere - Numerator program for calculating the volume and surface
            area of a sphere of radius r

*/

"Enter radius  "
get r
"Volume:       "; 4 / 3 * PI * (r ^ 3)
"Surface area: "; 4 * PI * (r ^ 2) 
