#include <iostream>
using namespace std;



int main() {
	// your code goes here
	
	for (int i = 0; i < 1000; i++)
	{ cout << (i%256) << " ";}

	return 0;
}