#ABC287A. [ABC287A] Majority

[ABC287A] Majority

Score : 100100 points

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,,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,,Ni = 1, 2, \dots, N.

Input

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

NN

S1S_1

S2S_2

\vdots

SNS_N

Output

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

3
For
Against
For
Yes

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

5
Against
Against
For
Against
For
No

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

1
For
Yes