#include int main(int argc, char * argv[]) { signed int i; i=2147483647; signed int j; j=i+1; printf("%d\n", i); printf("%d\n", j); return 0; }