#AT2453. A - Majority

A - Majority

当前没有测试数据。

A - Majority

Score : $100$ points

Problem Statement

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

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

Determine whether the majority agrees with the proposal.

Constraints

  • $N$ is an odd number between $1$ and $99$, inclusive.
  • $S_i = $ For or $S_i = $ Against, for all $i = 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 $N$ 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