{"ScriptPreparationCode":"var point1 = {x:5,y:10};\r\nvar point2 = {x:20,y:15};","TestCases":[{"Name":"MULT","Code":"Math.sqrt((point1.x-point2.x)*(point1.x-point2.x)\u002B(point1.y-point2.y)*(point1.y-point2.y));","IsDeferred":false},{"Name":"POW","Code":"Math.sqrt(Math.pow(point1.x-point2.x,2)\u002BMath.pow(point1.y-point2.y,2));","IsDeferred":false}]}