/******************************************************************************
Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <stdio.h>
#include <stdint.h>
#include <stdio.h>
#include <stdint.h>
int main()
{
unsigned long long test = 100;
test = test + (1UL << 33);
printf("test value %u", test);
return 0;
}