fork download
  1. x <- 1:999
  2. x <- x[(x %% 3 == 0 | x %% 5 == 0) & x %% 15 != 0]
  3. sum(x)
Success #stdin #stdout 0.3s 22832KB
stdin
Standard input is empty
stdout
[1] 200003