#!/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