You can use the following awk for this to ensure only the leading 0s from the second column are removed
awk '{gsub("^0","",$2); print $1,$2}' yourfile.txt
You can use the following awk for this to ensure only the leading 0s from the second column are removed
awk '{gsub("^0","",$2); print $1,$2}' yourfile.txt