#include <iostream> using namespace std; int main() { bool b; char c; cout << sizeof(b) << " " << sizeof(c); return 0; }