Hi everyone!
I need to write a little program that reads from file_1 two values per line, and then reads from file_2 if the first value of file_1 is there and replace in file_2 (or write in another file) the new value.
For example
file_1:
45404500705804504196740100
45404500705805004196740101
file_2:
584195497000 454045007058003
584195497001 454045007058045
584195497002 454045007058030
584195497003 454045007058050
New file:
584195497000 454045007058003
584196740100 454045007058045
584195497002 454045007058030
584196740101 454045007058050
Thanks for any help you can give me. I don't need actual code, but the functions or path I should take
Thanks!