a = 200
s = "Ruby"
if a > 200
if s == "Ruby"
puts "a > 200 and s == \"Ruby\""
else
puts "a > 200 and s != \"Ruby\""
end
else
if s == "Ruby"
puts "a <= 200 and s == \"Ruby\""
else
puts "a <= 200 and s != \"Ruby\""
end
end
# run:
#
# a <= 200 and s == "Ruby"
#