#AT1249. A - Rated for Me

A - Rated for Me

A - Rated for Me

Score : $100$ points

Problem Statement

A programming competition site AtCode regularly holds programming contests.

The next contest on AtCode is called ABC, which is rated for contestants with ratings less than $1200$.

The contest after the ABC is called ARC, which is rated for contestants with ratings less than $2800$.

The contest after the ARC is called AGC, which is rated for all contestants.

Takahashi's rating on AtCode is $R$. What is the next contest rated for him?

Constraints

  • $0 ≤ R ≤ 4208$
  • $R$ is an integer.

Input

Input is given from Standard Input in the following format:

RR

Output

Print the name of the next contest rated for Takahashi (ABC, ARC or AGC).


1199
ABC

$1199$ is less than $1200$, so ABC will be rated.


1200
ARC

$1200$ is not less than $1200$ and ABC will be unrated, but it is less than $2800$ and ARC will be rated.


4208
AGC