package com.codegym.task.task04.task0416; /* Crossing the road blindly */ import java.io.*; public class Solution { public static void main(String[] args){ double minutesTyped = getUserInput(); lightColor(minutesTyped); } public static double getUserInput(){ InputStream inputStream = System.in; Reader inputStreamReader = new InputStreamReader(inputStream); BufferedReader bufferedReader = new BufferedReader(inputStreamReader); double inputNumber = Double.valueOf(bufferedReader.readLine()).doubleValue(); return inputNumber; } public static String lightColor(double minutes){ double remainder = minutes % 5.0; String light = ""; if(remainder <= 3.0){ light = "green"; System.out.println(light); }else if(remainder <= 4.0){ light = "yellow"; System.out.println(light); }else{ light = "red"; System.out.println(light); } return light; } } For some reason, the question will not allow me to attach the code in the normal way (grayed out for this option). What I would like help with is the exception error message I am getting.