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