Read and solve it

Question: Shows the output of the following instructions
A)
.Model TINY
.CODE
.STARTUP
MOV AX, 1000H
MOV BX, 2000H
MOV CX, 3000H
PUSH AX
PUSH BX
PUSH CX
POP AX
POP CX
POP BX
.EXIT
END
Note : shows AX,BX,CX values
after the execution of above
program
B)
.Model TINY
.CODE
.STARTUP
MOV AX, 32H
MOV BX, 20H
MOV CX, 30H
MOV DX, 55H
PUSH A
MOV AX, 22H
MOV BX, 45H
MOV CX, 05H
POP A
.EXIT
END
Note : shows AX,BX,CX values
after the execution of above
program