Problem10097--ABC348 —— A - Penalty Kick

10097: ABC348 —— A - Penalty Kick

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Takahashi will have $N$ penalty kicks in a soccer match.

For the $i$-th penalty kick, he will fail if $i$ is a multiple of $3$, and succeed otherwise.

Print the results of his penalty kicks.

Input

The input is given from Standard Input in the following format:

```
$N$
```

Output

Print a string of length $N$ representing the results of Takahashi's penalty kicks. The $i$-th character $(1 \leq i \leq N)$ should be `o` if Takahashi succeeds in the $i$-th penalty kick, and `x` if he fails.

Constraints

-   $1 \leq N \leq 100$
-   All inputs are integers.

Sample 1 Input

7

Sample 1 Output

ooxooxo
Takahashi fails the third and sixth penalty kicks, so the third and sixth characters will be x.

Sample 2 Input

9

Sample 2 Output

ooxooxoox

Source/Category