各大佬看一下哪儿有猫饼
#include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x*y>2147483647) cout<<"long long int"; else cout<<"int"; return 0; }