Program stops for input. But does not run when input is provided

Please see image for problem description at end.

import java.util.ArrayList;

import java.util.Scanner;

public class GenericTree {

private class Node {
	int data;
	ArrayList<Node> children;
	Node(int data){
		this.data = data;
		this.children = new ArrayList();
	}
}

private Node root;
private int size;

GenericTree(){
  Scanner s = new Scanner(System.in);
  this.root = takeInput( s, null, 0 );
}

private Node takeInput(Scanner s, Node parent, int ithchild){
	if(this.root == null ){
		
		if(parent!=null) 
			this.root = parent;
		else
			System.out.println("Enter data for root node");
		
	}
	else{
		System.out.println("Enter data for " + ithchild + " child node whose parent is " + parent.data);
	}
	
	int nodedata = s.nextInt();
	Node newNode = new Node(nodedata);
	this.size++;
	
	System.out.println("Enter number of children for the node = " + newNode.data);
	int children = s.nextInt();
	
	for(int x=0; x<children; ++x){
		Node childNode = takeInput(s,newNode,x);
		newNode.children.add(childNode);
	}
	
	return newNode;
}

public void display(){
	display(root);
}

public void display(Node node){
	
	String str = node.data + "=>";
	
	for(int x=0; x<node.children.size(); ++x){
		//add children data for current node 
		str = str + node.children.get(x).data + ", ";
	}
	
	str = str + "END";
			
	System.out.println(str);
	
	for(int x=0; x<node.children.size(); ++x){
		Node childNode = node.children.get(x);
		display(childNode);
	}
	
}

public static void main(String[] str){
	GenericTree tree = new GenericTree();
	tree.display();
}

}

How to add image to decription. Previously i was able to add image for problem. not anymore now.

Hey @connectrajanjain For the first line in the input window you have given no. of children for the generic tree but after this you have to give the data for the no. of nodes you have entered. One value for each node.