#Defining the vectors
a=vector([2,0,3])
b=vector([0,6,2])
c=vector([3,3,0])

#Calculating and printing the volume of the tetrahedron which is the triple product
#of the given vectors
abs(a*b.cross_product(c))/6