11 lines
171 B
Python
11 lines
171 B
Python
|
import sys
|
||
|
sys.path.append('../..')
|
||
|
|
||
|
import helpers
|
||
|
|
||
|
|
||
|
cs = helpers.continues_statistic()
|
||
|
for val in (1, 3, 5, 4):
|
||
|
cs += helpers.continues_statistic(val)
|
||
|
print(cs)
|