You're reading two lines each time round the loop, and not writing the first one. Your loop condition does the first readLine, then you do another readLine inside the loop and write that line. The...