In today code byte how to read the no from 12012243660 as 12 0 12 0 24 36 60

there is no space nor comma how to approach it???

Hi, you can do the following:
-> store it as int/long long int:
long long int num=12012243660;
while(num!=0){
int x=num%100;
num=num/100;
}
here u will get x as ur required input.

since 12012243660 is greater than 10^9, int will not be able to store such large value. So, we use long long int