6 lines
181 B
Text
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
|