fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. long l;
  7. short s;
  8.  
  9. l = s = 100000;
  10.  
  11. cout << l << ' ' << s << endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 4532KB
stdin
Standard input is empty
stdout
-31072 -31072