#include int main(void) { char s[257]; int i = 0; start: printf("%03d\n",i++); fgets(stdin,s,257); if (s[0]=='l') goto start; return 0;}