跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1945. Laptops

    ID: 1951 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 2 上传者: 标签>排序编程与模拟基础难度共享题库Codeforces英文题面题目来源题面语言

Laptops

题目描述

A. Laptops
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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, ai and bi (1≤ai,bin), where ai is the price of the i-th laptop, and bi is the number that represents the quality of the i-th laptop (the larger the number is, the higher is the quality).

All ai are distinct. All bi are distinct.

Output

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

Examples
Input
2
1 2
2 1
Output
Happy Alex

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1525 题。保留原作者与原赛事署名。