mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
12 lines
185 B
Python
12 lines
185 B
Python
def problem_p03610(input_data):
|
|
s = eval(input_data)
|
|
|
|
odd_string = ""
|
|
|
|
for i, c in enumerate(s):
|
|
|
|
if i % 2 == 0:
|
|
|
|
odd_string += c
|
|
|
|
return odd_string
|