#P1285A. Mezo Playing Zoma
Mezo Playing Zoma
Description
Today, Mezo is playing a game. Zoma, a character in that game, is initially at position . Mezo starts sending commands to Zoma. There are two possible commands:
- 'L' (Left) sets the position ;
- 'R' (Right) sets the position .
Unfortunately, Mezo's controller malfunctions sometimes. Some commands are sent successfully and some are ignored. If the command is ignored then the position doesn't change and Mezo simply proceeds to the next command.
For example, if Mezo sends commands "LRLR", then here are some possible outcomes (underlined commands are sent successfully):
- "LRLR" — Zoma moves to the left, to the right, to the left again and to the right for the final time, ending up at position ;
- "LRLR" — Zoma recieves no commands, doesn't move at all and ends up at position as well;
- "LRLR" — Zoma moves to the left, then to the left again and ends up in position .
Mezo doesn't know which commands will be sent successfully beforehand. Thus, he wants to know how many different positions may Zoma end up at.
The first line contains — the number of commands Mezo sends.
The second line contains a string of commands, each either 'L' (Left) or 'R' (Right).
Print one integer — the number of different positions Zoma may end up at.
Input
The first line contains — the number of commands Mezo sends.
The second line contains a string of commands, each either 'L' (Left) or 'R' (Right).
Output
Print one integer — the number of different positions Zoma may end up at.
Note
In the example, Zoma may end up anywhere between and .