Hello i need to add two integers in the same row of a file, separated by tab

my file abc.txt has the following entry
12 123
15 456

my program needs to add 12 with 123 and 15 with 456

i...