module Kernel

def print(*a)

def print(*a)
  begin
    cucumber_print(*Iconv.iconv(Cucumber::CODEPAGE, "UTF-8", *a))
  rescue Iconv::IllegalSequence
    cucumber_print(*a)
  end
end

def puts(*a)

def puts(*a)
  begin
    cucumber_puts(*Iconv.iconv(Cucumber::CODEPAGE, "UTF-8", *a))
  rescue Iconv::IllegalSequence
    cucumber_puts(*a)
  end
end