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