#include <iostream>

void f(unsigned char c) { std::cout << c << std::endl; }

int main()
{
	f('a');		// здесь возможен ворнинг, но всем посрать
	return 0;
} 