#include<stdio.h> int main() { int i=2147483640; while(1) { if(i<0) break; printf("%d\n",i++); } return 0; }