Complete this code in main to perform the requested operations for a date entered by the user in this format: month dd, yyyy

public static void main( String [] args )

{

Scanner scan = new Scanner( System.in );

System.out.print( "Enter a date > " );

String date = scan.nextLine( );

// a. output the first letter in the month

// b. output the date in all lowercase letters