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