Using only one "System.out.print" command, print the following quote. Make sure to include the quote marks (") in your output.

"I do not fear computers. I fear the lack of them."
Isaac Asimov

To print the quote "I do not fear computers. I fear the lack of them." by Isaac Asimov using only one "System.out.print" command in Java, you can use the escape sequence (\") to include the quote marks in the output.

Here's the code you can use:

```java
System.out.print("\"I do not fear computers. I fear the lack of them.\"");
```

When you execute this code, it will print the desired quote including the quote marks:

"I do not fear computers. I fear the lack of them."