atcoder#ABC299A. [ABC299A] Treasure Chest
[ABC299A] Treasure Chest
Score : points
Problem Statement
You are given a string of length consisting of three kinds of characters: .
, |
, and *
.
contains exactly two |
and exactly one *
.
Determine whether the *
is between the two |
, and if so, print in
; otherwise, print out
.
More formally, determine whether one of the characters before the *
is |
and one of the characters after the *
is |
.
Constraints
- is an integer.
- is a string of length consisting of
.
,|
, and*
. - contains exactly two
|
. - contains exactly one
*
.
Input
The input is given from Standard Input in the following format:
Output
Print a single line containing in
if the *
is between the two |
, and out
otherwise.
10
.|..*...|.
in
Between the two |
, we have |..*...|
, which contains *
, so you should print in
.
10
.|..|.*...
out
Between the two |
, we have |..|
, which does not contain *
, so you should print out
.
3
|*|
in