fork download
  1. panda=5
  2. if panda >0:
  3. print( panda, "is a positive number")
  4. elif panda <0:
  5. print(panda,"is a negative number")
Success #stdin #stdout 0.08s 14136KB
stdin
Standard input is empty
stdout
5 is a positive number