#include <iostream>

int main()
{
	for(int i = 0; i < 100; ++i)
	{
		std::cout << i << " ";
	}
}
