B - Hina Arare Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 200

問題文

日本では、33 日にひなあられという、色のついたお菓子をお供えする習慣があります。

1 つの袋があり、ひなあられが N 個入っています。

この袋には、桃色、白色、緑色の 3 種類か、桃色、白色、緑色、黄色の 4 種類のひなあられが入っていることが分かっています。

桃色を P、白色を W、緑色を G、黄色を Y と表したとき、袋からひなあられを 1 粒ずつ取り出していったところ、i 番目に取り出したひなあられの色は S_i でした。

この袋に 3 種類のひなあられが入っていた場合は Three4 種類のひなあられが入っていた場合は Four と出力してください。

制約

  • 1 \leq N \leq 100
  • S_iPWGY
  • S_i=PS_j=WS_k=G を満たす i,j,k が必ず存在する

入力

入力は以下の形式で標準入力から与えられる。

N
S_1 S_2 ... S_N

出力

袋に 3 種類のひなあられが入っていた場合は Three4 種類のひなあられが入っていた場合は Four と出力せよ。


入力例 1

6
G W Y P Y W

出力例 1

Four

袋に 4 種類のひなあられが入っていたので Four と出力するとよいです。


入力例 2

9
G W W G P W P G G

出力例 2

Three

袋に 3 種類のひなあられが入っていたので Three と出力するとよいです。


入力例 3

8
P Y W G Y W Y Y

出力例 3

Four

Score : 200 points

Problem Statement

In Japan, people make offerings called hina arare, colorful crackers, on March 3.

We have a bag that contains N 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 i-th arare was S_i, 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

  • 1 \leq N \leq 100
  • S_i is P, W, G or Y.
  • There always exist i, j and k such that S_i=P, S_j=W and S_k=G.

Input

Input is given from Standard Input in the following format:

N
S_1 S_2 ... S_N

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.


Sample Input 1

6
G W Y P Y W

Sample Output 1

Four

The bag contained arare in four colors, so you should print Four.


Sample Input 2

9
G W W G P W P G G

Sample Output 2

Three

The bag contained arare in three colors, so you should print Three.


Sample Input 3

8
P Y W G Y W Y Y

Sample Output 3

Four