#include main() { int i; i=0; while(i++ < 5) printf("%d \n",i); printf("%d \n",i); i=0; while(++i < 5) printf("b %d \n",i); printf("%d \n",i); }