//It finds the volume of a triangle pyramid
//argument0 = width of the pyramid's base
//argument1 = height of the pyramid's base
//argument2 = pyramid's height
var pyramid base;
base = (argument0*argument1)/2;
pyramid = (base*argument2)/3;
return pyramid