help
package com.codegym.task.task04.task0416;
/*
t = 0 + 5 = 5, green
t = 3, yellow
t = 3 + 5 = 8, yellow again
and so on
*/
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) throws Exception {
//write your code here
BufferedReader x = new BufferedReader(new InputStreamReader(System.in));
String s = x.readLine();
double t = Double.parseDouble(s);
if (t%5.0>=0&&t%5<3&&t%5==5)
System.out.println("green");
if(t%5.0>=3&&t%5<4)
System.out.println("yellow");
else
System.out.println("red");
}
}