fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main(){
  5. #ifndef ONLINE_JUDGE
  6. freopen("input.txt" , "r" , stdin);
  7. freopen("output.txt" , "w" , stdout);
  8. #endif
  9. int t;cin>>t;
  10. while(t!=42)
  11. {
  12. cout<<t<<endl;
  13. cin>>t;
  14. }
  15. return 0;
  16. }
Success #stdin #stdout 0s 3464KB
stdin
2
42
stdout
2