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