I'm now practicing MapReduce in Hadoop, and I got this code of matrix multiplication, there isn't any question running it, but the output format is not what I want. I currently have:
00 66
01 78
02 90
The format I want is like
0,0,66
0,1,78
0,2,90
How do I change the code?