Each player in a tournament plays six games. There are no ties. The tournament director places the players in groups based on the results of games as follows:
if a player wins or games, they are placed in Group ;
if a player wins or games, they are placed in Group ;
if a player wins or games, they are placed in Group ;
if a player does not win any games, they are eliminated from the tournament.
Write a program to determine which group a player is placed in.
输入格式
The input consists of six lines, each with one of two possible letters: W (to indicate a win) or L (to indicate a loss).
输出格式
The output will be either (to indicate which Group the player should be placed in) or (to indicate the player has been eliminated).