#include using namespace std; int main() { int i; do { printf("%03d\n", i); cout.flush(); ++i; } while(getchar() == 'l'); return 0; }