Guys..
See this code? is it right code or have it mistake?please advice in details,
1- By knowing the numbers: so i guess here the numbering is knowing
mov AX, 2
mov BX, 2
mov CX, 2
add AX,BX
add AX,CX
put AX
end
2- By entering the number enering from the users. here i am using memordy addressing and inderect addressing
Get AX,[AX]
Get BX,[BX]
Get CX,[CX]
add AX[AX], BX,[BX]
add AX, [AX] , CX,[CX]
put AX[AX]
end