fork download
  1. S = 0
  2. for x in range(1, 500):
  3. if x % 2 != 0 and x % 3 == 0:
  4. S = S + x
  5. print(S)
Success #stdin #stdout 0.02s 27696KB
stdin
Standard input is empty
stdout
20667