What will be the output of the following program?
10 REM AREA OF TRIANGLE IF
THREE SIDES ARE GIVEN.
$20 \mathrm{READ} \mathrm{a}, \mathrm{b}, \mathrm{c}, \mathrm{s}$
30 DATA $12,18,10$
40 LET $\mathrm{D}=\left[\mathrm{s} *(\mathrm{~s}-\mathrm{a}) *(\mathrm{~s}-\mathrm{b})^{\star}(\mathrm{s}-\mathrm{c})\right]^{\wedge} \frac{1}{2}$
50 PRINT "THE VALUE OF $\mathrm{D}="$; D
60 PRINT D
70 END
(1) 1850
(2) 3200
(3) 6400
(4) Error