PROGRAMMING:Day (function implementation)
Please write a function. The formal parameter is three integers representing the month, year and day (all are legal dates). Return the day of the current year.
Main function input year and two month day, a total of five integers, representing two dates, output the difference between the two days.
###Input format:
Y M1 D1 M2 D2, a total of 5 integers, Y represents the year, M1 D1 represents the month and day of the first date, M2 D2 represents the month and day of the second date, all data guarantee date 1 is before and date 2 is after.
###Input example:
```in
2021 1 1 1 31
```
###Output example:
```out
thirty
```
###Input example:
```in
2020 2 1 3 1
```
###Output example:
```out
twenty-nine
```
###Input example:
```in
2020 1 1 12 31
```
###Output example:
```out
three hundred and sixty-five
```
###Input example:
```in
2021 1 1 12 31
```
###Output example:
```out
three hundred and sixty-four
```
answer:If there is no answer, please comment
Main function input year and two month day, a total of five integers, representing two dates, output the difference between the two days.
###Input format:
Y M1 D1 M2 D2, a total of 5 integers, Y represents the year, M1 D1 represents the month and day of the first date, M2 D2 represents the month and day of the second date, all data guarantee date 1 is before and date 2 is after.
###Input example:
```in
2021 1 1 1 31
```
###Output example:
```out
thirty
```
###Input example:
```in
2020 2 1 3 1
```
###Output example:
```out
twenty-nine
```
###Input example:
```in
2020 1 1 12 31
```
###Output example:
```out
three hundred and sixty-five
```
###Input example:
```in
2021 1 1 12 31
```
###Output example:
```out
three hundred and sixty-four
```
answer:If there is no answer, please comment