please help me to correct this program:
.model small
.stack 64
.data
x DB 'A'
y DB '1'
LN DB 13,10,'$'
.code
mov cx,5
L1:
mov Bx,Cx
mov cx,5
L2:
mov ah,9
lea dx,x
int 21h
loop L2
mov ah,2
mov dx,y
int 21h
inc y
inc x
mov cx,bx
loop L1
mov ax,4c00h
int 21h
main endp
end main
-------------------------
the output i need
A
1 2
B C D
3 4 5 6
E F G H I