记录编号 346959 评测结果 AAAAAAAAAA
题目名称 [Keller战纪·外传] Keller 与 鱼蛋蛋 最终得分 100
用户昵称 GravatarGo灬Fire 是否通过 通过
代码语言 C++ 运行时间 0.037 s
提交时间 2016-11-12 17:37:51 内存使用 0.28 MiB
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
#include<cmath>
using namespace std;
#define LL long long
const int mod=998244353;
const int maxn=1010;

void Init();

int main(){
	freopen("keller_fishegg.in","r",stdin);
	freopen("keller_fishegg.out","w",stdout);
    Init();
    getchar();getchar();
    return 0;
}
void Init(){
	int n;scanf("%d",&n);
	int k=n%19;
	if(k==0)puts("Green");
	else {
		k%=3;
		if(!k)puts("Blue");
		else if(k==1)puts("Red");
		else puts("Green");
	}
}