fork download
  1. for x in range (- 10,10) :
  2. if x**3 == 27:
  3. for y in range (-10,10) :
  4. if y**3*x == 24 :
  5. for z in range (-10,10) :
  6. if x*y*z*z == 96 :
  7. print z+x*y
  8.  
Success #stdin #stdout 0.01s 9016KB
stdin
Standard input is empty
stdout
2
10