You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
160 B
Python

from sys import stdin, stdout
i = 0
while True:
data = stdin.read(2)
if not data:
break
if i%2 == 0:
stdout.write(data)
i+=1