Surely that method of multiplication is not suited for larger numbers, to get 246 * 369 u do
200 * 300
200 * 60
200 * 9
40 * 300
40 * 60
40 * 9
6 * 300
6 * 60
6 * 9
So for x-digit multiplied by y-digit u need to write down x*y products and then sum it up, where as for the old method you need to only write down min(x,y) products and sum it up.