#!/usr/bin/ruby

Alphabet = %w(y b n d r f g 8 e j k m c p q x o t 1 u w i s z a 3 4 5 h 7 6 9)

len = (ARGV.shift || "8").to_i
puts (0...len).map{ Alphabet[ rand(Alphabet.length) ] }.join
