Formatted Numbers - Easy Problems - Solution to Toph.co Online Judge Problem

Formatted Numbers

Limits 1s, 512 MB

Read an integer variable and print it in which the digits are separated into groups of three by commas.

Input

The input will contain an integer A (0 ≤ A < 200000000).

Output

Print the formatted number.

#include<stdio.h>
#include<string.h>

int main()
{
    char s[20];
    int i;
    gets(s);
    int k=0,j=0;
    int new[30];
    for(i=strlen(s)-1;i>=0;i--)
    {
        if(j==3)
        {
            new[k++]=',';
            new[k++]=s[i];
            j=0;
        }
        else
            new[k++]=s[i];
     j++;

    }

    for(i=k-1;i>=0;i--)
    {
        printf("%c",new[i]);
    }


}