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