fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. uint16_t a=6400;
  5. uint16_t b=63444;
  6.  
  7. int main() {
  8. cout<<a<<"\n";
  9. cout<<b<<"\n";
  10. cout<<bool( b < a);
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
6400
63444
0