Statement Ruby

x = 1
while x < 100
  puts x
  x = x * 2
end