{"raw_statement":[{"iden":"problem statement","content":"There are $N$ people. Each of them agrees or disagrees with a proposal. Here, $N$ is an odd number.\nThe $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`.\nDetermine whether the majority agrees with the proposal."},{"iden":"constraints","content":"*   $N$ is an **odd number** between $1$ and $99$, inclusive.\n*   $S_i = $ `For` or $S_i = $ `Against`, for all $i = 1, 2, \\dots, N$."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$\n$S_1$\n$S_2$\n$\\vdots$\n$S_N$"},{"iden":"sample input 1","content":"3\nFor\nAgainst\nFor"},{"iden":"sample output 1","content":"Yes\n\nThe proposal is supported by two people, which is the majority, so `Yes` should be printed."},{"iden":"sample input 2","content":"5\nAgainst\nAgainst\nFor\nAgainst\nFor"},{"iden":"sample output 2","content":"No\n\nThe proposal is supported by two people, which is not the majority, so `No` should be printed."},{"iden":"sample input 3","content":"1\nFor"},{"iden":"sample output 3","content":"Yes"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}