fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. unsigned char x = 0x91;
  8.  
  9. unsigned char y = 0x02;
  10.  
  11. unsigned out;
  12. out = x + y;
  13.  
  14. cout << out << endl;
  15. out = x + y + 1;
  16. cout << out << endl;
  17. }
Success #stdin #stdout 0s 2684KB
stdin
Standard input is empty
stdout
147
148