#include using namespace std; int main(){ int num = 0; string str; while(str != "unlocked"){ printf("%03d", num); cin >> str; num++; } }