RosettaCodeData/Task/A+B/Huginn/a+b.huginn

17 lines
248 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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; }
)
);
);
}