Help me in solving GSJ07 problem

My issue

SOLUTION FOR SECOND CASE

My code

//  Update the '_' in the code below
import java.util.Scanner;

class Codechef
{
	public static void main (String[] args)
	{
        Scanner read = new Scanner(System.in);
        
        int A = read.nextInt();
        int B = read.nextInt();
        int C = read.nextInt();
        int D = read.nextInt();
        int E = read.nextInt();
        System.out.print(A + " " + B + " " + C + " " + D + " " + E );
	}
}

Learning course: Solve Programming problems using Java
Problem Link: How to accept multiple integers on separate lines Practice Problem in Solve Programming problems using Java - CodeChef