fork download
  1. for i in range(1000,1101):
  2. if i%3==2 and i%5==4 and i%7==6:
  3. print(i)
Success #stdin #stdout 0.01s 7128KB
stdin
Standard input is empty
stdout
1049