Statement Ruby

age = 10
if age < 18
  type = 'child'
else
  type = 'adult'
end
puts "You are a " + type