print "Think of a number " while user_input = gets.to_i if user_input.is_a? Integer puts "your number is #{user_input}" break else print "Think of a number " end end