#include <stdio.h>

int main() {
	int a = 'ы';
	printf("%i %i %i", a, sizeof('ы'), sizeof('s'));
	return 0;
}