AT_past17_b フルコンボ
Description
You are given a tuple of $ N $ strings: $ S = (S_1,S_2,\ldots,S_N) $ . Each $ S_i $ is one of `Perfect`, `Great`, `Good`, `Bad`, and `Miss`.
If $ S $ only contains `Perfect`, print `All Perfect`; otherwise, if it consists of `Perfect` and `Great`, print `Full Combo`; otherwise, print `Failed`.
Input Format
The input is given from Standard Input in the following format:
> $ N $ $ S_1 $ $ S_2 $ $ \vdots $ $ S_N $
Output Format
Print the answer.
Explanation/Hint
### Sample Explanation 1
$ S $ does not consist only of `Perfect`, but it consists of `Perfect` and `Great`. Thus, `Full Combo` should be printed.
### Constraints
- $ 1\leq N \leq 100 $
- $ N $ is an integer.
- $ S_i $ is one of `Perfect`, `Great`, `Good`, `Bad`, and `Miss`.