5 lines
120 B
Factor
5 lines
120 B
Factor
USING: math.parser splitting ;
|
|
: a+b ( -- )
|
|
readln " " split1
|
|
[ string>number ] bi@ +
|
|
number>string print ;
|