PROGRAMMING:Matching month to season
Develop a program that inputs a number between 1-12 ( to be a month), and print the corresponding season. If the user input a number out of this range, print “data error”.
### Input Specification:
Input a integer.
### Output Specification:
output one of the season or "data error".
### Sample Input 1:
```in
ten
```
### Sample Output 1:
```out
autumn
```
### Sample Input 2:
```in
seventeen
```
### Sample Output 2:
```out
data error
```
answer:If there is no answer, please comment
### Input Specification:
Input a integer.
### Output Specification:
output one of the season or "data error".
### Sample Input 1:
```in
ten
```
### Sample Output 1:
```out
autumn
```
### Sample Input 2:
```in
seventeen
```
### Sample Output 2:
```out
data error
```
answer:If there is no answer, please comment