#include <iostream>

int main() {
    std::cout << "Size of char " << sizeof (char('а')) << "\n";
    return 0;
}