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