﻿from math import *

def Comb(n,k):
    c=factorial(n)/(factorial(n-k)*factorial(k))
    return c

def I():
    k=0
    P=
    while P<=0.025:
        k=k+1
        S=
        P=P+S
    return k,P



