I combining 2 numbers together and I lest with only 3 numbers...
    s = seconds_ref[i]
    print("s: ", s)
    f = fractions_ref[i] / (2 ** 32)
    print("f: ", f)
    time = s + f
    print("time: ", time)
print:
s:  3854955049
f:  0.9089999999850988
time:  3854955049.909
How can I keep all the numbers?
thanks! :)
