16 lines
248 B
Text
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; }
|
|
)
|
|
);
|
|
);
|
|
}
|