fork download
  1. x=14
  2. if x % 2 == 0:
  3. x = x / 2
  4. else:
  5. x = x - 1
  6. print(x)
Success #stdin #stdout 0.09s 14136KB
stdin
Standard input is empty
stdout
7.0