Statement Ruby

age = 10
puts "You're too young to use this system" if age < 18
age = 10
if age < 18
  puts "You're too young to use this system"
end