Now given any positive integer N (< 10^5), you are supposed to count the number of twin primes which are no greater than N. 孪生素数就是指相差2的素数对,例如3和5,5和7,11和13…。给定整数N,输出小于N的素数对的数量。Input Your program must read test cases from standard input. The inpu...