RosettaCodeData/Task/A+B/Agena/a+b.agena
2017-09-25 22:28:19 +02:00

6 lines
181 B
Text

scope
local f := trim( io.read() ) split " "; # read a line and split into fields
local a := tonumber( f[ 1 ] );
local b := tonumber( f[ 2 ] );
print( a + b )
epocs