CF2033A.Sakurako and Kosuke

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Sakurako and Kosuke

Sakurako and Kosuke decided to play some games with a dot on a coordinate line. The dot is currently located in position x=0x=0. They will be taking turns, and Sakurako will be the one to start.

On the ii-th move, the current player will move the dot in some direction by 2i12\cdot i-1 units. Sakurako will always be moving the dot in the negative direction, whereas Kosuke will always move it in the positive direction.

In other words, the following will happen:

  1. Sakurako will change the position of the dot by 1-1, x=1x = -1 now
  2. Kosuke will change the position of the dot by 33, x=2x = 2 now
  3. Sakurako will change the position of the dot by 5-5, x=3x = -3 now
  4. \cdots

They will keep on playing while the absolute value of the coordinate of the dot does not exceed nn. More formally, the game continues while nxn-n\le x\le n. It can be proven that the game will always end.

Your task is to determine who will be the one who makes the last turn.

Input

The first line contains one integer tt (1t1001\le t\le 100) — the number of games that Sakurako and Kosuke played.

Each game is described by one number nn (1n1001 \le n\le 100) — the number that defines the condition when the game ends.

Output

For each of the tt games, output a line with the result of that game. If Sakurako makes the last turn, output "Sakurako" (without quotes); else output "Kosuke".

Samples

4
1
6
3
98
Kosuke
Sakurako
Kosuke
Sakurako

在线编程 IDE

建议全屏模式获得最佳体验