Help me in solving GSJ209A problem, in question it was given to take integer but why string is here

My issue

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);
        
        String A = read.next();
        String B = read.___();
        String C = read.next();
        String D = read.next();
        String E = read.next();
        // You can use "\n" to add a new line instead of adding multiple print statements
        System.out.print(A + "\n" + _ + "\n" + C + "__" + D + "\n" + E );
	}
}

Learning course: Java for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone