#!/usr/bin/env ruby # -*- coding:utf-8 -*- height = 0 while height < 120 print"身長を入力してください\n" height = gets.chomp.to_i if height < 120 print"また今度!\n" end end print"わーい!\n"