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