#K10341. Date Format Conversion

    ID: 23225 Type: Default 1000ms 256MiB

Date Format Conversion

Date Format Conversion

You are given a date in the format MM/DD/YYYY. Your task is to convert this date into the format (D\ \text{Month},\ Y) where (D) is the day without any leading zeros, (\text{Month}) is the full name of the month, and (Y) is the year. For example, if the input is "04/03/2022", the output should be "3 April, 2022". Use the standard mapping from month numbers to month names as follows: (01) corresponds to January, (02) to February, and so on.

inputFormat

The input consists of a single line containing a date string in the format MM/DD/YYYY. Read the date from standard input.

outputFormat

Output the converted date in the format D Month, Year to the standard output.## sample

04/03/2022
3 April, 2022