CF456A.Laptops

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

Laptops

One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the first laptop is less (strictly smaller) than the price of the second laptop but the quality of the first laptop is higher (strictly greater) than the quality of the second laptop.

Please, check the guess of Alex. You are given descriptions of n laptops. Determine whether two described above laptops exist.

Input

The first line contains an integer n (1 ≤ n ≤ 105) — the number of laptops.

Next n lines contain two integers each, a**i and b**i (1 ≤ a**i, b**i ≤ n), where a**i is the price of the i-th laptop, and b**i is the number that represents the quality of the i-th laptop (the larger the number is, the higher is the quality).

All a**i are distinct. All b**i are distinct.

Output

If Alex is correct, print "Happy Alex", otherwise print "Poor Alex" (without the quotes).

Samples

2
1 2
2 1
Happy Alex

在线编程 IDE

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