using namespace std;

int main()
{
	int a = 0;
	while(true)
	{
		cout << a <<" ";
		a ++;
	} 
	return 0;
}

2 comments

  • 1