Write a single println statement that will output the following exactly as shown (including line breaks and quotation marks).
"I made this letter longer than usual because I lack the time to make it short"
Blaise Pascal
a. System.out.println(""I made this letter longer than usual because I lack the time to \nmake it short"\nBlaise Pascal");
b. System.out.println("I made this letter longer than usual because I lack the time to \nmake it short Blaise Pascal");
c. System.out.println("I made this letter longer than usual because I lack the time to \nmake it short" Blaise Pascal");
d. System.out.println("I made this letter longer than usual because I lack the time to make it short Blaise Pascal");