不知为什么#4一直WA,看这里
注意:(要在我的代码上改,并说出我的代码有什么错)
#include <bits/stdc++.h>
using namespace std;
int main(){
long long xx,yy,xy,yx,n,m,t;
cin>>xx>>xy>>yy>>yx;
n=xy;
n*=yx;//不知为什么n不能直接n=xy*yx
m=xy*yy;
t=xx*yx;
if(n>INT_MAX||m<INT_MIN||t<INT_MIN){
cout<<"long long int";
}else cout<<"int";
return 0;
}