So basically the scenario is we have initial value 0.00
if the user enter any value like 2 than the decimal value should be 0.02
if the user enter any value like 3 than the decimal value should be 0.23 (appending to previous value of 0.02)
if the user enter any value like 5 than the decimal value should be 2.35 (appending to previous value of 0.23)
so if the user has entered 12345 it should be 123.45 .
I want something like this