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