The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ?
Ok, so i am working on projec
def prime_max(x): a = x i = 2 while i in range(2,int(a+1)): if a%i == 0: a = a/i if a == 1: print(i) i = i-1 i = i+1