#include <iostream>
using namespace std;
int main(int argc, char **argv)
{
	cout << "嗨客网(www.haicoder.net)\n" << endl;
	short sNum = 100;
	cout << "sizeof short = " << sizeof(sNum) << endl;
}