import primefun.isPrime

print("Start of primefunmodule2")

for n in range(3, 50+1):
    if isPrime(n): print(n, end=', ')
print()


