fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. char zapach1, zapach2;
  6. zapach2 = 't';
  7. zapach1 = 'y';
  8. zapach1 = zapach2+2;
  9. zapach1 += 3;
  10.  
  11.  
  12. cout << (int)zapach1+3 << endl;
  13. cout << (int)zapach2+3 << endl;
  14.  
  15. cout << zapach1 - zapach2 << endl;
  16.  
  17.  
  18.  
  19.  
  20.  
  21. return 0;
  22. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
124
119
5