Why is this submisson failing? VACCINE DATES problem

/* package codechef; // don’t place package name! */

import java.util.;
import java.lang.
;
import java.io.*;

/* Name of the class has to be “Main” only if the class is public. */
class Codechef
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
for(int i=0;i<t;i++)
{
int A=sc.nextInt();
int B=sc.nextInt();
int C=sc.nextInt();
if(A>=B && A<=C)

	        System.out.println("Take the second dose now");
	    
	    else if(A>B && A>C)
	    
	        System.out.println("Too late");
	    
	    else if(A<B && A<C )
	    
	        System.out.println("Too early");
	    
	    
	}
}

}

The problem is only that you are printing out the wrong phrases. The word “the” in “Take the second dose now” should be omitted, and the words “early” and “late” should be capitalized.

1 Like