fork download
  1. a = 9
  2. if a <= 0:
  3. print("0 이하")
  4. elif a <= 5:
  5. print("5 이하")
  6. else:
  7. print("10 이하")
Success #stdin #stdout 0.1s 14088KB
stdin
Standard input is empty
stdout
10 이하