fork download
  1. cur = []
  2. for c in range(0, 500,3):
  3. if (c % 2 != 0) and (c % 3 == 0):
  4. cur.append(c)
  5. soma = sum(cur)
  6. print(soma)
Success #stdin #stdout 0.02s 27696KB
stdin
Standard input is empty
stdout
20667