#abc287a. [abc287_a]Majority

[abc287_a]Majority

Problem Statement

There are NN people. Each of them agrees or disagrees with a proposal. Here, NN is an odd number.

The ii-th (i=1,2,dots,N)(i = 1, 2, \\dots, N) person's opinion is represented by a string SiS_i: the person agrees if Si=S_i = For and disagrees if Si=S_i = Against.

Determine whether the majority agrees with the proposal.

Constraints

  • NN is an odd number between 11 and 9999, inclusive.
  • Si=S_i = For or Si=S_i = Against, for all i=1,2,dots,Ni = 1, 2, \\dots, N.

Input

The input is given from Standard Input in the following format:

NN S1S_1 S2S_2 vdots\\vdots SNS_N

Output

Print Yes if the majority of the NN people agree with the proposal; print No otherwise.


Sample Input 1

3
For
Against
For

Sample Output 1

Yes

The proposal is supported by two people, which is the majority, so Yes should be printed.


Sample Input 2

5
Against
Against
For
Against
For

Sample Output 2

No

The proposal is supported by two people, which is not the majority, so No should be printed.


Sample Input 3

1
For

Sample Output 3

Yes