#atcoderABC089B. Hina Arare
Hina Arare
Problem Statement
In Japan, people make offerings called hina arare, colorful crackers, on March .
We have a bag that contains hina arare. (From here, we call them arare.)
It is known that the bag either contains arare in three colors: pink, white and green, or contains arare in four colors: pink, white, green and yellow.
We have taken out the arare in the bag one by one, and the color of the -th arare was , where colors are represented as follows - pink: P
, white: W
, green: G
, yellow: Y
.
If the number of colors of the arare in the bag was three, print Three
; if the number of colors was four, print Four
.
Constraints
- is
P
,W
,G
orY
. - There always exist , and such that
P
,W
andG
.
Input
Input is given from Standard Input in the following format:
Output
If the number of colors of the arare in the bag was three, print Three
; if the number of colors was four, print Four
.
Input 1
6
G W Y P Y W
Output 1
Four
The bag contained arare in four colors, so you should print Four
.
Input 2
9
G W W G P W P G G
Output 2
Three
The bag contained arare in three colors, so you should print Three
.
Input 3
8
P Y W G Y W Y Y
Output 3
Four