# coding:cp932

a = 100
if a > 80:
  print "合格!"
  print "よかったですね。"
else:
  print "不合格..."
  print "次回はがんばりましょう。"
print "プログラム終了。"

