#8028: 為什麼會TLE


cano1959 (Mikie)


#include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
while(t--){
long long int a,b;
cin >> a >> b;
if (a==0&&b==0)
return 0;
else if(a > b)
cout << "Unfair" << endl;
else
cout << "Fair" << endl;
}
return 0;
}
 
這樣子為什麼會TLE?