PROGRAMMING:Fox and rabbit
In the chessboard shown in the figure below, f is fox and H is rabbit.
![ Title 1. JPG] (~ / fcfd4f49-adf5-4c50-b273-bee581b6cf80. JPG)
The fox can move one space to the left or right at a time, and the rabbit can jump two spaces to the third space at a time. The fox goes first, and then they move alternately.
If the rabbit jumps into the fox's grid, it will be eaten. If the fox goes into the rabbit's grid, it can eat the rabbit.
The starting position of fox f is fixed as the first grid, and the starting position of rabbit h is arbitrary. Suppose both sides are very smart. So the starting position of the rabbit is very important.
Please be equally smart, write a program to input the starting position of the rabbit, and judge whether the rabbit can escape the chase of the fox.
####Input format
>Starting position of rabbit (1-30)
####Output format
>Winner
####Input sample 1
```in
twenty-seven
```
####Output sample 1
```out
Hare
```
####Input sample 2
```in
six
```
####Output sample 2
```out
Fox
```
answer:If there is no answer, please comment
![ Title 1. JPG] (~ / fcfd4f49-adf5-4c50-b273-bee581b6cf80. JPG)
The fox can move one space to the left or right at a time, and the rabbit can jump two spaces to the third space at a time. The fox goes first, and then they move alternately.
If the rabbit jumps into the fox's grid, it will be eaten. If the fox goes into the rabbit's grid, it can eat the rabbit.
The starting position of fox f is fixed as the first grid, and the starting position of rabbit h is arbitrary. Suppose both sides are very smart. So the starting position of the rabbit is very important.
Please be equally smart, write a program to input the starting position of the rabbit, and judge whether the rabbit can escape the chase of the fox.
####Input format
>Starting position of rabbit (1-30)
####Output format
>Winner
####Input sample 1
```in
twenty-seven
```
####Output sample 1
```out
Hare
```
####Input sample 2
```in
six
```
####Output sample 2
```out
Fox
```
answer:If there is no answer, please comment