fork download
  1. # your code goes here
  2. def aa(int1):
  3. if int1:
  4. return False
  5. else:
  6. return 778787
  7. print(aa(True))
  8. print(aa(False))
Success #stdin #stdout 0.02s 8956KB
stdin
Standard input is empty
stdout
False
778787