A number theory hobbyist classifies positive integers by comparing them to the sum of their own proper divisors (all divisors of n except n itself).
Given n, let s be the sum of the proper divisors of n. Output:
perfectifs == nabundantifs > ndeficientifs < n
Input format
Line 1: a single integer n.
Output format
One word: perfect, abundant, or deficient.
Constraints
- 1 <= n <= 10000000