79500992

Date: 2025-03-11 13:59:07
Score: 0.5
Natty:
Report link

Below is the corrected script:

z = 20
for i in range(3, 31):
    is_coprime = True
    
    for j in range(2, 30):
        if (i % j == 0) and (z % j == 0):
            is_coprime = False
            break
    
    if is_coprime:
        print(i)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Subir Chowdhury