def sum_primes(number):
    total = 2
    # Skip 2 in order to just skip evens completely
    for x in range(3, number,2):
            if(isPrime(x)):
                total += x
    return total
def question_seven(nthPrime):
    count = 0
    start = 1
    final = 0
    while count < nthPrime:
        if isPrime(start):
            count+=1
            final = start
        if(start == 2 or start == 1):
            start+=1
        else: start+=2
    return final