summaryrefslogtreecommitdiff
path: root/odd
blob: 93aaa800541e8a2289162d89a1186a947e8d5a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env ruby

STDIN.set_encoding 'utf-8'
STDOUT.set_encoding 'utf-8'


i = 1
while line = STDIN.gets
  puts line if i%2!=0
  i+=1
end