#C5236. Divide-Subtract Game Winner
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.
## sample2
Johnny
</p>