I can input a single row matrix by keyboard. as
x = {};
n = 3;
For[k = 1, k ≤ n, k++,
br = Input[Row[{"Enter the ", k, " element"}]];
AppendTo[x, br];
]
This will get a single row matrix like x={ 2, 3 , 6}. But If I want to get input as x = {{2,3,4},{4,5,6},{0,1,0}} by keyboard then what can I do?