#include using namespace std; int main (int argc, char *argv[]) { int i = 1; while (i < 22) { cout << i++ << endl; } return 0; }