#include <stdio.h>

int main(void)
{
	long number = 378282246310005;
	long num1   = number;
	
	//Counts the digits the card has
	int dcounter = 0;
    while (num1 != 0)
    {
        num1 /= 10;
        dcounter++;
    }

    printf("dcounter, %i\n", dcounter);
    printf("num1, %lo\n", num1);
    printf("number (octal), %lo\n", number);
    printf("number (dec), %ld\n", number);
    
    return 0;
}