#include <iostream>
int main() {
    std::cout << sizeof(char) << std::endl;
    std::cout << sizeof(bool) << std::endl;
    return 0;
}
