fork download
  1. d=12
  2. e=22
  3. f=4
  4. if(d>f and e+f>d):
  5. print(d)
  6. if(f>e or d+f>e):
  7. print(e)
  8. if((e+f)%d==0):
  9. print(f)
Success #stdin #stdout 0.03s 9060KB
stdin
Standard input is empty
stdout
12