File size: 172 Bytes
5e4510c
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Online judge programming example for OpenEvolve"""

# EVOLVE-BLOCK-START
import sys

for line in sys.stdin:
    s = line.strip()

ans = 0
print(ans)

# EVOLVE-BLOCK-END