int main(){ int i; char s[20]; for(i=0;i<1000;i++){ printf("%03d\n",i); fflush(0); scanf("%s",s); if(strcmp(s,"unlocked")==0)break; } return 0; }