#include <functional>
#include <limits>
#include <iomanip>
#include <iostream>
#include <vector>
#include <typeinfo>

#include <cstdlib>

using namespace std;
int main()
{
	
	for(char c = 32; c < numeric_limits<decltype(c)>::max(); c++){
		cout << "znak " << setw(3) << right << int(c) << ": " << c << endl;
	}
}