fork download
  1. a = 120
  2. b = 725
  3. if a < b:
  4. print("b큼")
  5. elif a == b:
  6. print("둘같음")
  7. else:
  8. print("a큼")
Success #stdin #stdout 0.14s 14048KB
stdin
Standard input is empty
stdout
b큼