fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int x = 1, y = -2, z = 666;
  6. string falsetrue = "FFTF";
  7. cout << falsetrue[((-x >> 31) & 1) + ((-y >> 31) & 1) + ((-z >> 31) & 1)];
  8. return 0;
  9. }
Success #stdin #stdout 0s 4524KB
stdin
Standard input is empty
stdout
T