computer organization -- 2

Job ID: 31247065

Budget: $10 – $30 USD

Write a MARIE assembly language to read two numbers from the keyboard and display which is smaller.

The High-level Language Code:

read X
read Y
if X < Y then
min = X
else
min = Y
end if
output min