/*
	This is a two dimensional array
	It asks the user for scores and outputs the score
	
*
*/

import java.util.*;

public class TwoDimensional
{
	public static void main(String[] args)
	{
		Scanner key = new Scanner(System.in);
		
		final int rows = 3;
		final int cols = 4;
		
		int[][] number = new int[rows][cols];
		
		for(int j=0; j<rows; j++)
		{
			for(int i=0; i<cols; i++)
			{
				System.out.println("Enter scores: ");
				number[j][i] = key.nextInt();
			}
		}
	
		System.out.println("The score you entered is");
			
		for(int r=0; r<rows; r++)
		{
			for(int c=0; c<cols; c++)
			{
				System.out.println(number[r][c]);
			}
		}
	}
}
		