{}
run-icon
main.py
import re for k in range(200): isPrime = not re.match(r'^.?$|^(..+?)\1+$', '1' * k) if isPrime: print(k)
Output