fork(1) download
  1. import math
  2. n = 32
  3. p = math.log(n)/math.log(2)
  4. if(p%1 == 0):
  5. print('yes')
  6. else:
  7. print('no')
  8.  
Success #stdin #stdout 0.03s 9440KB
stdin
Standard input is empty
stdout
yes