I need to be able to attach an integer number to another integer as a decimal part, for example:
For numbers 12345
and 12345678
I would want to get: 12345,12345678
Note: The numbers' length is variable.
I have tried casting numbers to string to measure their length and then divide them accordingly but there must be a more efficient and fast way than this.