% read two integers and print their sum.

var x,y: int

put "Please enter two whole numbers"
get x, y

put "And the answer is..."
put x + y
