#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
nedan = ["はちみつレモンゼリー", "卵スープ", "パン"]
i = 1
nedan.each do |n|
  printf(" %d です")
  i += 1
end
