(defun main (&rest argv) (declare (ignorable argv)) (let* ((s (read-line))) (format t "~a~%" (if (and (find #\4 s) (find #\6 s)) "Beautiful" "...")))) (main)