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