fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int n;
  8.  
  9. cin >> n;
  10. cout << n << endl;
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5540KB
stdin
Standard input is empty
stdout
32766