#include <iostream.h>

void main()
{
	int x = 0;

	while(x <= 20) {
		cout << x << endl;
		x++;
	}
}