I'm working on what should be a simple code to calculate gallons of water in a swimming pool as part of title block automation. Below is what I have so far. The problem appears after entering the average depth the lisp stops and displays the following error: ; error: bad argument type: numberp: "5" [code] (DEFUN CALGAL (/ CMD SA AD GAL) (SETQ CMD (getvar "CMDECHO")) (SETVAR "CMDECHO" 0) (SETQ SA (getstring " What is the POOL's SURFACE AREA: ")) (SETQ AD (getstring " What is the POOL's AVERAGE DEPTH: ")) (SETQ GAL (* (* AD 7.5) SA)) (COMMAND SA "" GAL) (SETVAR "CMDECHO" CMD) (PRINC) )[/code]Please, help I'm at a loss. Thank you.