1long f(short a,short b){return (long)a/b;}
2main(){if(f(-32768,-1)!=32768L)abort();else exit(0);}
3