As pointed our by @Mark, it's just a display issue. The read.table is treating the 2nd column as a numeric. You can force read it as a char as follows to display all digits while printing the data frame. Say you have the data in the file test.txt... The following will generate the desired output
df <- read.table("test.txt", sep=" ",colClasses = c("character", "character"))