#!/usr/bin/env ruby

require 'zipf'

while line = STDIN.gets
  line.strip!
  if line && line!='' && line[0].downcase?
    puts line
  end
end