#!/usr/bin/env ruby require 'zipf' while line = STDIN.gets line.strip.each_char { |c| puts c } end