{"raw_statement":[{"iden":"problem statement","content":"You are given a string $S$ of length $N$ consisting of three kinds of characters: `.`, `|`, and `*`. $S$ contains exactly two `|` and exactly one `*`.\nDetermine whether the `*` is between the two `|`, and if so, print `in`; otherwise, print `out`.\nMore formally, determine whether one of the characters before the `*` is `|` and one of the characters after the `*` is `|`."},{"iden":"constraints","content":"*   $3\\leq N\\leq 100$\n*   $N$ is an integer.\n*   $S$ is a string of length $N$ consisting of `.`, `|`, and `*`.\n*   $S$ contains exactly two `|`.\n*   $S$ contains exactly one `*`."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$N$\n$S$"},{"iden":"sample input 1","content":"10\n.|..*...|."},{"iden":"sample output 1","content":"in\n\nBetween the two `|`, we have `|..*...|`, which contains `*`, so you should print `in`."},{"iden":"sample input 2","content":"10\n.|..|.*..."},{"iden":"sample output 2","content":"out\n\nBetween the two `|`, we have `|..|`, which does not contain `*`, so you should print `out`."},{"iden":"sample input 3","content":"3\n|*|"},{"iden":"sample output 3","content":"in"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}