cat("CI .95 for 67 out of 75 :", binom.test(67,75)$conf.int, "\n\n")
cat("CI .95 for 106 out of 250 :", binom.test(106,250)$conf.int, '\n')
cat("CI .95 for 77 out of 250 :", binom.test(77,250)$conf.int, '\n')
cat("CI .95 for 67 out of 250 :", binom.test(67,250)$conf.int, "\n\n")
cat("CI .95 for 138 out of 250 :", binom.test(138,250)$conf.int, '\n')
cat("CI .95 for 105 out of 250 :", binom.test(105,250)$conf.int, '\n')
cat("CI .95 for 7 out of 250 :", binom.test(7,250)$conf.int, "\n\n")
cat("CI .95 for 66 out of 75 :", binom.test(66,75)$conf.int, '\n')
cat("CI .95 for 6 out of 75 :", binom.test(6,75)$conf.int, '\n')
cat("CI .95 for 3 out of 75 :", binom.test(3,75)$conf.int)