% read two "real" numbers and print their sum.

var x,y: real

put "Please enter two numbers each possibly with a decimal point"
get x, y

put "And the answer is ", x + y
