first line contains an integer N. Each of the next N lines contains at least 1 and at most 100 space separated distinct integers(DEPENDS ON USER CHOICE). For ex-
3
5 100 1
2
5 100
i want to store nos in a 2d array like
a[1][1] = 5 , a[1][2] =100, a[1][3] = 1
a[2][1] =2
a[3][1] = 5, a[3][2] = 100