read `DDH.txt`: print(`The maximum number of people hired with N=16, P=0.43, that according to the Princeton methodology , with confidence level 1/40 `): print(`signals bias is:`): print( RejRegP(16,0.43, 1/40)): print(`The maximum number of people hired with N=16, P=0.43, that according to the Government methodology that `): print(`signals bias is:`): print( RejRegG(16,0.43)): print(`The maximum number of people hired with N=25, P=1/2, that according to the Princeton methodology , with confidence level 1/40 `): print(`signals bias is:`): print( RejRegP(25,1/2, 1/40)): print(`The maximum number of people hired with N=25, P=1/2, that according to the Government methodology that `): print(`signals bias is:`): print( RejRegG(25,1/2)): quit: