| Code Rush 2025 |
|---|
| Finished |
While having a Discord meeting, Sebastian and Sebastián discovered they have the same name! Any time another person called them out, they would both try to answer at the same time, generating confusion between everyone. To prevent this, they planned out a game so that the winner could keep the name, while the loser would change their name to Notbastian (Not Sebastian). The game works as follows:
The first line of input contains $$$n$$$ ($$$1 \leq n \leq 10^6$$$) — the number of marbles placed on the ground. The second line of input contains $$$n$$$ integers $$$a_1, a_2, ..., a_n$$$ ($$$1 \leq a_i \leq 10^9$$$) — the numbers written on the marbles.
Print a single string — "Sebastian" if Sebastián gets to keep his name, and "Notbastian" if not.
41 2 2 4
Sebastian
41 1 2 2
Notbastian
| Name |
|---|


