Without experience or even a lecture whatsoever in assembly language our professor told us to add & subtract 16bit decimal numbers in Dosbox Debug, we only know handful of syntax that can work in debug. After a week of trying i only manage to this line of codes to convert my hexa inputs to decimal output but only a 4bit number.
mov al,9
mov bl,8
add al,bl
daa
int 21
int 20