# list0102.rb
# 条件文

a = 123
if a > 100
    puts("100より大きい")
elsif a < 100
    puts("100より小さい")
else
    puts("100ちょうど")
end