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