RosettaCodeData/Task/A+B/Huginn/a+b.huginn
2023-07-01 13:44:08 -04:00

16 lines
248 B
Text

import Algorithms as algo;
import Text as text;
main() {
print(
"{}\n".format(
algo.reduce(
algo.map(
text.split( input().strip(), " " ),
integer
),
@( x, y ){ x + y; }
)
);
);
}