sum=0for i in range(2, 101): k = True for j in range(2, i): if i % j == 0: k = False break; if k: sum = sum + i print(sum)