a,b = map(int,input().split()) if abs(a-b) >= 1: if min(a,b) & 1: print("Q") else: print("P") else: print("P")