RosettaCodeData/Task/A+B/Agena/a+b.agena
2023-07-01 13:44:08 -04: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