Prior to insertion of System.out.printf(), formatting the output to the console in Java ( i.e. left/right justify padding output, tabs etc) was difficult at best. printf() is also used in other languages as well. Write a program to right justify the following output: 1 2 3 4 11 22 33 44 111 222 333 444 1111222233334444 Use the for-loop and printf() to accomplish this.