#C5236. Divide-Subtract Game Winner

    ID: 48863 Type: Default 1000ms 256MiB

Divide-Subtract Game Winner

Divide-Subtract Game Winner

In this problem, two players, Johnny and Lisa, play a game with an initial integer x satisfying \(2 \le x \le 10^9\). The rules of the game are as follows:

  • If x is exactly 2, Johnny can immediately subtract 2 and win the game.
  • For any other value of x, the outcome is determined by the parity of x. If x is even, Lisa wins; if x is odd, Johnny wins.

Assume that both players play optimally.

Your task is to determine the winner given the initial number x.

inputFormat

The input consists of a single integer x (\(2 \le x \le 10^9\)) provided via standard input.

outputFormat

Output a single line containing either "Johnny" or "Lisa" indicating the game's winner.

## sample
2
Johnny

</p>