#include <iostream>
using namespace std;

int main() {
	char character;
	
	for (int i = 1; i <= 127 ; i++)
	{
		character = static_cast<char>(i);
		cout << character ;
		
		if (i % 16 == 0)
		{
			cout << endl;
		}
		
		else
		cout << " ";
	}
	// your code goes here
	return 0;
}