asa naman ang addition..
kani one digit ni..
epa three daw ninyo.. hehe
like 111 + 231..
ana three..
====
jmp main
ask db 0ah,0dh,'Input the Number and Press Enter: ',0ah,0dh,'$'
input1 db 2,?,3 dup(20h)
input2 db 2,?,3 dup(20h)
main:
mov ax, 03h
int 10h
lea dx, ask
mov ah, 09h
int 21h
mov ah,0ah
mov dx,offset input1
int 21h
mov si,offset input1
add si,2
mov bl,b[si]
mov ah,0ah
mov dx,offset input2
int 21h
mov di,offset input2
add di,2
mov bh,b[di]
add bh,bl
sub bh,30h
mov ah,02
mov dl,bh
int 21h
int 20h