#include using namespace std; int main() { int i; do { cout << i << endl; ++i; } while(getchar() == 'l'); return 0; }