This script transforms votes in number form into votes in mathematical form.
For example, given five candidates A, B, C, D, E, and two ballots 12345 and 11222, our output should be "A > B > C > D > E" for the first ballot, and "A = B > C = D = E" for the second ballot.
Input votes should be stored in number form in the file `results_bruts.txt`, one vote per line.
Votes in mathematical form will be written to the file `results_out.txt`, one vote per line.