; Add two numbers

start:
    INP
    STA x
    INP
    ADD x
    OUT
    JMP start

x: .data 1 0