notebook.community
Edit and run
In [1]: i = 0 j = 1 while i < 2333: if j % 2 == 0 or j % 3 == 0: i += 1 j += 1 print j
i = 0 j = 1 while i < 2333: if j % 2 == 0 or j % 3 == 0: i += 1 j += 1 print j
3501
In [ ]: