#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
i=1
while i<=5
  puts i
  i+=1
end
