Answer:
Following is the program in Java Language
public class Main // main class
{
public static void main(String[] args) // main method
{
System.out.println( "Gershwin, George" ); // display value
}
}
Output:
Gershwin, George
Explanation:
Following is the description of Statement: