#K84007. Greeting or Pass

    ID: 36323 Type: Default 1000ms 256MiB

Greeting or Pass

Greeting or Pass

You are given an integer \(n\) representing the size of an \(n \times n\) grid. In this problem, two players traverse the grid, and whether they greet each other or pass by is decided solely based on the parity of \(n\). If \(n\) is odd, the players will meet and greet each other; if \(n\) is even, they will pass without greeting.

More formally, output "Greet" if \(n\) is odd and "Pass" if \(n\) is even.

inputFormat

The input consists of a single integer \(n\) (\(1 \leq n \leq 10^9\)), representing the size of the grid.

outputFormat

Output a single string: "Greet" if \(n\) is odd, and "Pass" if \(n\) is even. The output is case-sensitive.

## sample
3
Greet