#include <stdio.h> int main( void ) { unsigned long long i = 18446744073709551615; printf( "%llu\n", i ); printf( "%I64u\n", i ); return 0; }