INCLUDE PCMAC.INC
	.MODEL SMALL
	.586
	.STACK 100h

	.DATA
msg1	DB	"Enter first number:$"
msg2	DB	"Enter second number:$"
msg3	DB	"The sum is:$"
zorei	DW	?
	.CODE
	EXTRN GetDec:NEAR, PutDec:NEAR 
Hello	PROC
	_Begin
	_PutStr  msg1
	call GetDec
	mov bx, ax	; copy first number in bx
	_PutStr  msg2
	call GetDec
	mov zorei, ax	; copy second number in variable zorei
	_PutStr  msg3
	add bx, zorei   ; bx = bx+zorei
	mov ax, bx	; copy bx (the sum) back in ax
	call PutDec
	_Exit    0
Hello	ENDP
	END   Hello