COBOL JUST RIGHT CLAUSE

The following simple program depicts the use of JUSTIFIED RIGHT clause        01 VAR1  PIC X(50) VALUE SPACES.        01 VAR2  PIC X(50) JUSTIFIED RIGHT VALUE SPACES.            MOVE ‘JUSTIFIED RIGHT DEPICTED BY MAINFRAMEWIZARD.COM’ Output of the above program is as below JUSTIFIED RIGHT DEPICTED BY MAINFRAMEWIZARD.COM                                                                              JUSTIFIED RIGHT DEPICTED BY MAINFRAMEWIZARD.COM