{"raw_statement":[{"iden":"problem statement","content":"There are $N$ people numbered $1$ to $N$. Each person wears a red hat or a blue hat.\nYou are given a string $s$ representing the colors of the people. Person $i$ wears a red hat if $s_i$ is `R`, and a blue hat if $s_i$ is `B`.\nDetermine if there are more people wearing a red hat than people wearing a blue hat."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 100$\n*   $|s| = N$\n*   $s_i$ is `R` or `B`."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$s$"},{"iden":"sample input 1","content":"4\nRRBR"},{"iden":"sample output 1","content":"Yes\n\n*   There are three people wearing a red hat, and one person wearing a blue hat.\n*   Since there are more people wearing a red hat than people wearing a blue hat, the answer is `Yes`."},{"iden":"sample input 2","content":"4\nBRBR"},{"iden":"sample output 2","content":"No\n\n*   There are two people wearing a red hat, and two people wearing a blue hat.\n*   Since there are as many people wearing a red hat as people wearing a blue hat, the answer is `No`."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}