시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB21316313675.556%

문제

You would like to do some experiments in natural language processing. Natural language processing (NLP) involves using machines to recognize human languages.

Your first idea is to write a program that can distinguish English text from French text.

After some analysis, you have concluded that a very reasonable way of distinguishing these two languages is to compare the occurrences of the letters “t” and “T” to the occurrences of the letters “s” and “S”. Specifically:

  • if the given text has more “t” and “T” characters than “s” and “S” characters, we will say that it is (probably) English text;
  • if the given text has more “s” and ”S” characters than “t” and “T” characters, we will say that it is (probably) French text;
  • if the number of “t” and “T” characters is the same as the number of “s” and “S” characters, we will say that it is (probably) French text.

입력

The input will contain the number N (0 < N < 10000) followed by N lines of text, where each line has at least one character and no more than 100 characters.

출력

Your output will be one line. This line will either consist of the word English (indicating the text is probably English) or French (indicating the text is probably French).

예제 입력 1

3
The red cat sat on the mat.
Why are you so sad cat?
Don’t ask that.

예제 출력 1

English

예제 입력 2

3
Lorsque j'avais six ans j'ai vu, une fois,
une magnifique image,
dans un livre

예제 출력 2

French