6 lines
123 B
Python
6 lines
123 B
Python
|
from voussoirkit import pipeable
|
||
|
|
||
|
|
||
|
total = sum(float(x) for x in pipeable.go() if x.strip())
|
||
|
pipeable.output(f'{total}\n')
|