#include<stdio.h>
void main()
{
 int i= ~0;
 int j=(int)i;
 j++;
 printf("%d",i);
}