fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n, m;
  6. cin >> n;
  7. m = n / 1;
  8. cout << m << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5312KB
stdin
2
stdout
2