#include <iostream>
using namespace std;
int main()
{
int a = 100;
short b = a;
cout<<a<<endl<<b<<endl;
return 0;
}
程序是可以运行, 大数值会溢出