What will the following code display?
// The Works of Wolfgang
public class Wolfgang
{
public static void main(String[] args)
{
System ("The works of Wolfgang\ninclude ");
System ("the following:");
System ("\nThe Turkish March ");
System ("and Symphony No. 40 ");
System.out.println("in G minor.");
}
}