I have a file with lines of two integer separated by ','. I just want to store this integers from each line related together. example : file:
12,23
45,6545
12,89
I want to save 12 and 23 or 45 and 6545 both related together which I could call em 'both' or 'one by one' later .
Thank you
update, Dear @MaxU I have a file named 'A'
A:
36,89
65,84
52,999
1,7
each two numbers in one line are a pair and I want to use them together or separately in calculations ... .