	org	100h
start:
	ld	a,1
	ld	b,1
	add	a,b
	ld	(answer),a
	ret
answer:
	db	0
